Age | Commit message (Expand) | Author |
2015-07-29 | Use named initialisers for X509V3_EXT_METHOD structs (for the usual | Joel Sing |
2015-07-29 | Expand obsolete M_ASN1.*(cmp|dup|print|set) macros - no change in generated | Joel Sing |
2015-07-25 | Expand ASN.1 template macros that got missed in the last pass - only change | Joel Sing |
2015-07-25 | Expand ASN.1 template macros - the generated assembly only differs by | Joel Sing |
2015-07-19 | Remove case that can never happen. | Doug Hogan |
2015-07-18 | Fix leak found by coverity, issue 78897 - which also brough to | Bob Beck |
2015-07-15 | Memory leak; Coverity CID 78836 | Miod Vallat |
2015-07-15 | Unchecked allocations, and make sure we do not leak upon error. Fixes | Miod Vallat |
2015-07-15 | Avoid leaking objects upon error; tweaks & ok doug@ | Miod Vallat |
2015-02-17 | Memory leak in error path. Coverity CID 78822. | Miod Vallat |
2015-02-15 | Check ASN1_OCTET_STRING_new() for failure. Coverity CID 78904 | Miod Vallat |
2015-02-14 | Memory leak in `should not happen' condition; Coverity CID 78889. | Miod Vallat |
2015-02-14 | Memory leak upon error; Coverity CID 78857 | Miod Vallat |
2015-02-13 | Don't leak memory on errors - fixes coverity issues 105353 105253 | Bob Beck |
2015-02-10 | unifdef OPENSSL_NO_RFC3779 - this is currently disabled and unlikely to | Joel Sing |
2015-02-10 | Remove more IMPLEMENT_STACK_OF noops that have been hiding for the last | Joel Sing |
2015-02-10 | The IMPLEMENT_STACK_OF and IMPLEMENT_ASN1_SET_OF macros were turned into | Joel Sing |
2015-02-10 | Expand the IMPLEMENT_ASN1_ALLOC_FUNCTIONS macro so that the code is visible | Joel Sing |
2015-02-09 | Expand the IMPLEMENT_ASN1_FUNCTIONS macro so that the code is visible and | Joel Sing |
2015-02-07 | Delete a lot of #if 0 code in libressl. | Doug Hogan |
2014-12-06 | Avoid modifying input on failure in X509_(TRUST|PURPOSE)_add. | Doug Hogan |
2014-11-18 | further BUF_strdup conversion: these places should be safe to rely on | Ted Unangst |
2014-10-28 | Check the result of sk_*_push() operations for failure. | Miod Vallat |
2014-10-05 | The fixes to X509_PURPOSE_add() in r1.18 actually could cause a global | Miod Vallat |
2014-10-05 | Be sure to check the stack push operation for success in v2i_POLICY_MAPPINGS(); | Miod Vallat |
2014-10-05 | In v2i_AUTHORITY_INFO_ACCESS(), separate object allocation from object push | Miod Vallat |
2014-10-05 | Memory leak upon error in set_dist_point_name(). | Miod Vallat |
2014-10-05 | Be sure to check object allocation for success before using them. | Miod Vallat |
2014-10-05 | Missing deallocation upon error. | Miod Vallat |
2014-10-05 | Fix memory leak in the error path of v2i_AUTHORITY_KEYID(). | Miod Vallat |
2014-07-23 | level_add_node(): if a memory allocation failure causes us to attempt to clean | Miod Vallat |
2014-07-13 | The bell tolls for BUF_strdup - Start the migration to using | Bob Beck |
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 | Upon realloc() failure, free() the original pointer and remove the stupid | Miod Vallat |
2014-07-10 | Stop including standard headers via cryptlib.h - pull in the headers that | Joel Sing |
2014-07-09 | {malloc,reallocarray} + memset(,0,) -> calloc | Miod Vallat |
2014-06-28 | Fix 9 memory leaks. | Loganaden Velvindron |
2014-06-12 | tags as requested by miod and tedu | Theo de Raadt |
2014-06-11 | c-file-style hints, begone; ok beck | Theo de Raadt |
2014-06-07 | Remove various test stubs. The good ones have been moved by jsing | Theo de Raadt |
2014-06-01 | There is no need for is{upper,lower}() tests before to{lower,uppper}(), | Theo de Raadt |
2014-06-01 | EBCDIC support died a while ago, except in a comment. | Theo de Raadt |
2014-05-30 | more: no need for null check before free | Theo de Raadt |
2014-05-29 | ok, next pass after review: when possible, put the reallocarray arguments | Theo de Raadt |
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-26 | KNF. | Joel Sing |
2014-05-26 | KNF. | Joel Sing |
2014-05-22 | if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefully | Miod Vallat |