Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Wrap stdint.h includes in ifdefs. | Darren Tucker | 2015-02-22 | 1 | -0/+2 |
| | |||||
* | upstream libc change | Damien Miller | 2014-12-18 | 1 | -2/+2 |
| | | | | | | | | | | | | revision 1.2 date: 2014/12/08 03:45:00; author: bcook; state: Exp; lines: +2 -2; commitid: 7zWEBgJJOCZ2hvTV; avoid left shift overflow in reallocarray. Some 64-bit platforms (e.g. Windows 64) have a 32-bit long. So, shifting 1UL 32-bits to the left causes an overflow. This replaces the constant 1UL with (size_t)1 so that we get the correct constant size for the platform. discussed with tedu@ & deraadt@ | ||||
* | Add reallocarray to compat library | Darren Tucker | 2014-12-09 | 1 | -0/+44 |