Age | Commit message (Expand) | Author |
2014-09-26 | X509_issuer_and_serial_hash(): do not leak memory if an error occurs during | Miod Vallat |
2014-09-26 | X509at_add1_attr(): do not free stuff we did not allocate in the error path. | Miod Vallat |
2014-09-23 | Fix regression introduced in revision 1.15 by using strndup() instead of | Miod Vallat |
2014-07-25 | BIO_free() returns immediately when the sole input is NULL. | Doug Hogan |
2014-07-22 | Kill a bunch more BUF_strdup's - these are converted to have a check for | Bob Beck |
2014-07-17 | Free sktmp when it's no longer needed. By doing so, we fix a bunch of memory ... | Loganaden Velvindron |
2014-07-13 | Check X509_NAME_oneline() return value when it will have to allocate memory. | Miod Vallat |
2014-07-12 | jsing and I are investigating removal of all? most? 'getenv from library' | Theo de Raadt |
2014-07-12 | if (x) FOO_free(x) -> FOO_free(x). | Miod Vallat |
2014-07-12 | Principle of least surprise: make CMAC_CTX_free(), OCSP_REQ_CTX_free() and | Miod Vallat |
2014-07-11 | When looking for the issuer of a certificate, if the current candidate is | Miod Vallat |
2014-07-11 | Only import cryptlib.h in the four source files that actually need it. | Joel Sing |
2014-07-10 | Explicitly include <openssl/opensslconf.h> in every file that references | Joel Sing |
2014-07-10 | Stop including standard headers via cryptlib.h - pull in the headers that | Joel Sing |
2014-07-10 | delete some casts. ok miod | Ted Unangst |
2014-07-09 | remove unused, private version strings except SSL_version_str | Brent Cook |
2014-07-03 | Memory-leak-in-error-path of the day in X509_ATTRIBUTE_set1_data(). | Miod Vallat |
2014-06-28 | Fix a memory leak and another one that occurs in the error paths. | Loganaden Velvindron |
2014-06-24 | Unifdef -UNO_SYS_TYPES_H | Miod Vallat |
2014-06-23 | Since this is a library, place issetugid() before every getenv() | Theo de Raadt |
2014-06-20 | wrap getenv OPENSSL_ALLOW_PROXY_CERTS in an issetugid check, to protect | Theo de Raadt |
2014-06-19 | check stack push return and make some effort to clean up. ok beck miod | Ted Unangst |
2014-06-19 | improve error checking. set error code on error, and check malloc return. | Ted Unangst |
2014-06-12 | tags as requested by miod and tedu | Theo de Raadt |
2014-06-11 | Stop setting the EVP_MD_CTX_FLAG_NON_FIPS_ALLOW - it has been ignored since | Joel Sing |
2014-06-07 | malloc() result does not need a cast. | Theo de Raadt |
2014-05-30 | no need for null check before free. from Brendan MacDonell | Ted Unangst |
2014-05-29 | convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53 | Theo de Raadt |
2014-05-29 | Everything sane has stdio, and FILE *. we don't need ifdefs for this. | Bob Beck |
2014-05-29 | Any sane platform has stdio. Stop pretending we will ever use a platform | Bob Beck |
2014-05-25 | calloc instead of malloc/memset. from Benjamin Baier | Ted Unangst |
2014-05-24 | Almost nothing actually needs to include <openssl/e_os2.h>, however by | Joel Sing |
2014-04-26 | Replace all use of ERR_add_error_data with ERR_asprintf_error_data. | Bob Beck |
2014-04-20 | Restore beck's (void)snprintf(): they were reviewed. | Philip Guenther |
2014-04-20 | KNF. | Joel Sing |
2014-04-20 | More KNF. | Joel Sing |
2014-04-20 | KNF. | Joel Sing |
2014-04-20 | KNF. | Joel Sing |
2014-04-20 | KNF. | Joel Sing |
2014-04-19 | More KNF. | Joel Sing |
2014-04-19 | We'll interpret a (void) cast on snprintf() to mean it's been verified that | Philip Guenther |
2014-04-18 | blunt force knf | Ted Unangst |
2014-04-17 | no need for a variable which is hardcoded and only used in an snprintf, | Stuart Henderson |
2014-04-17 | Some VMS and WIN32 cleanup | Giovanni Bechis |
2014-04-17 | Mostly gut e_os.h: | Theo de Raadt |
2014-04-17 | Use of OPENSSL_SYS_xxx defines in public header files considered harmful. | Miod Vallat |
2014-04-17 | fix some more leaks, mostly suggestions from miod | Jonathan Gray |
2014-04-17 | some KNF cleanup following the script | Theo de Raadt |
2014-04-17 | fix some of the leaks | Jonathan Gray |
2014-04-17 | Change library to use intrinsic memory allocation functions instead of | Bob Beck |