summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1 (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefullymiod2014-05-222-6/+3
* KNF.jsing2014-05-223-171/+154
* No uses of UTF8_{getc,putc}() in ports, so remove them from the public header.guenther2014-05-222-9/+8
* Bring UTF8_{getc,putc} up-to-date: it's been a decade since 5- and 6-byteguenther2014-05-204-93/+88
* If you need to allocate `a + b' bytes of memory, then don't allocate `a + b*2',miod2014-05-183-6/+6
* Make sure UTF8_getc() is invoked with the proper buffer size.miod2014-05-181-2/+2
* Fix memory leaks upon failure.miod2014-05-152-27/+39
* Replace ASN1_GENERALIZEDTIME_adj(), ASN1_UTCTIME_adj() andmiod2014-05-153-25/+73
* Bring back ASN1_seq_pack(), ASN1_seq_unpack(), ASN1_pack_string() andmiod2014-05-122-0/+108
* i give up. reuse problem is unfixable. dlg says puppet crashes.tedu2014-05-041-8/+4
* Use C99 initializers for the various FOO_METHOD structs. More readable, andmiod2014-04-272-15/+12
* static const char * = "" -> static const char[] = "", to produce shorter code.miod2014-04-273-3/+3
* Unifdef -U OPENSSL_BUILD_SHLIBCRYPTO, since all it causes under Unix is tomiod2014-04-272-10/+0
* Replace all use of ERR_add_error_data with ERR_asprintf_error_data.beck2014-04-265-21/+12
* Unifdef -UPEDANTIC. ok beck@ tedu@miod2014-04-231-6/+0
* Remove duplicate pointer assignment in ASN1_primitive_free(); Dirk Englingmiod2014-04-231-1/+0
* Casting from a const unsigned char ** to a const unsigned char ** seems...jsing2014-04-231-8/+4
* Make sure ret->name is NULL'ed before return when freeing.beck2014-04-231-0/+1
* Rather than sprinkling magical numbers everywhere, we can use sizeof()beck2014-04-231-4/+4
* null a pointer to prevent double free. from Dirk Englingtedu2014-04-221-0/+1
* fix memory leaks. from Dirk Englingtedu2014-04-223-21/+12
* improve realloc/calloc/malloc patterns; ok guentherderaadt2014-04-2116-48/+23
* Delete #if 0'd time related functions which are totally expired.deraadt2014-04-212-74/+0
* fix accidentally deleted deref.beck2014-04-211-1/+1
* ASN1_STRING cleanup - realloc has handled NULL since I had a mulletbeck2014-04-201-17/+10
* replace a bunch of pointer-arithmatic-strcpy-converted-blindly-to-strlcpybeck2014-04-201-7/+7
* another attempt at fixing stale x509 data. since we don't know where thetedu2014-04-191-10/+8
* can't actually do this. cause unknown.tedu2014-04-191-1/+1
* More KNF.jsing2014-04-195-238/+296
* More KNF.jsing2014-04-194-261/+379
* More KNF.jsing2014-04-193-10/+14
* We'll interpret a (void) cast on snprintf() to mean it's been verified thatguenther2014-04-196-13/+13
* More KNF.jsing2014-04-194-685/+761
* More KNF.jsing2014-04-196-380/+471
* More KNF.jsing2014-04-196-363/+434
* More KNF.jsing2014-04-197-203/+207
* use intrinsic strlcpy and strlcat everywhere so we only have one set ofbeck2014-04-191-3/+3
* OPENSSL_gmtime() is really just gmtime_r(); ok guentherderaadt2014-04-183-4/+4
* tone down some XXXXX to not appear in greptedu2014-04-181-1/+1
* Put back i2d_ASN1_SET() and d2i_ASN1_SET() from the NO_ASN1_OLD prune, as theremiod2014-04-182-0/+245
* guenther would prefer more separationtedu2014-04-181-0/+2
* Some dude named Tavis Ormandy reported a bug which has gone unfixed.tedu2014-04-181-0/+5
* blank lines between decls and codetedu2014-04-181-0/+5
* More KNF.jsing2014-04-181-76/+80
* More KNF.jsing2014-04-187-425/+535
* More KNF.jsing2014-04-187-464/+514
* More KNF.jsing2014-04-1817-515/+662
* add braces missed when fixing leaksjsg2014-04-181-1/+2
* More KNF.jsing2014-04-1811-664/+813
* lob a few more knf grenades in here to soften things up.tedu2014-04-1854-1796/+999