Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | malloc() result does not need a cast. | deraadt | 2014-06-07 | 1 | -1/+1 |
| | | | | ok miod | ||||
* | more: no need for null check before free | deraadt | 2014-05-30 | 1 | -6/+3 |
| | | | | ok tedu guenther | ||||
* | convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53 | deraadt | 2014-05-29 | 1 | -2/+5 |
| | | | | | | | | | potential integer overflows easily changed into an allocation return of NULL, with errno nicely set if need be. checks for an allocations returning NULL are commonplace, or if the object is dereferenced (quite normal) will result in a nice fault which can be detected & repaired properly. ok tedu | ||||
* | calloc instead of malloc/memset. from Benjamin Baier | tedu | 2014-05-25 | 1 | -4/+2 |
| | |||||
* | Stop being a dummy... presumably these are left overs from pedantic mode | jsing | 2014-05-15 | 1 | -2/+0 |
| | | | | | | that were not wrapped with #if PEDANTIC. ok miod@ | ||||
* | Typo in C99 field initializer introduced in r1.3; | miod | 2014-05-09 | 1 | -1/+1 |
| | | | | reported by Steven Chamberlain | ||||
* | Replace Apache v2 license with ISC license. | matthew | 2014-05-09 | 1 | -12/+12 |
| | | | | | Thanks to Google for agreeing to offer the code under more agreeable licensing terms! | ||||
* | kill some more VMS ifdefs | giovanni | 2014-05-08 | 1 | -4/+0 |
| | | | | ok miod@ | ||||
* | knf approximation | tedu | 2014-05-06 | 1 | -753/+854 |
| | |||||
* | Use C99 initializers for the various FOO_METHOD structs. More readable, and | miod | 2014-04-27 | 1 | -42/+42 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | avoid unreadable/unmaintainable constructs like that: const EVP_PKEY_ASN1_METHOD cmac_asn1_meth = { EVP_PKEY_CMAC, EVP_PKEY_CMAC, 0, "CMAC", "OpenSSL CMAC method", 0,0,0,0, 0,0,0, cmac_size, 0, 0,0,0,0,0,0,0, cmac_key_free, 0, 0,0 }; ok matthew@ deraadt@ | ||||
* | Change library to use intrinsic memory allocation functions instead of | beck | 2014-04-17 | 1 | -9/+9 |
| | | | | | | | | OPENSSL_foo wrappers. This changes: OPENSSL_malloc->malloc OPENSSL_free->free OPENSSL_relloc->realloc OPENSSL_freeFunc->free | ||||
* | import OpenSSL-1.0.1c | djm | 2012-10-13 | 1 | -0/+2025 |