summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2014-05-30Fix some more nasty stringyness in here by using asprintf instead of cruft.Bob Beck
2014-05-30more: no need to null check before free; ok guentherTheo de Raadt
2014-05-30more: no need for null check before freeTheo de Raadt
2014-05-30While working on another diff I ended up looking to see why on earth theJoel Sing
2014-05-30remove CONST_STRICT. ok beck deraadtTed Unangst
2014-05-30no need for null check before free. from Brendan MacDonellTed Unangst
2014-05-30Don't write out more than we have allocated in obj_txt, as the gloryBob Beck
2014-05-30remove some of the bigger lies, as applicable to libressl.Ted Unangst
2014-05-29I do not have time to describe how bad the realloc() uses in here, nowTheo de Raadt
2014-05-29the comment says RAND_pseudo_bytes should be RAND_bytes. make it so.Ted Unangst
2014-05-29we no longer care that these aren't used for ssl2Ted Unangst
2014-05-29ok, next pass after review: when possible, put the reallocarray argumentsTheo de Raadt
2014-05-29convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53Theo de Raadt
2014-05-29Everything sane has stdio, and FILE *. we don't need ifdefs for this.Bob Beck
2014-05-29remove back compat that was already disabled back in 1998.Ted Unangst
2014-05-29Any sane platform has stdio. Stop pretending we will ever use a platformBob Beck
2014-05-29no space before labelTed Unangst
2014-05-29line up else betterTed Unangst
2014-05-29consistent bracesTed Unangst
2014-05-29unidef DH, ECDH, and ECDSA. there's no purpose to a libssl without them.Ted Unangst
2014-05-29repair KNF indentTheo de Raadt
2014-05-29use calloc, from Benjamin BaierTed Unangst
2014-05-29Make it substantially easier to identify protocol version requirementsJoel Sing
2014-05-29When you have functions that perform specific functions, use them.Joel Sing
2014-05-29Fix another two cases where the return value of ssl_replace_hash() isJoel Sing
2014-05-28More KNF.Joel Sing
2014-05-28Refactor tls1_change_cipher_state() and split the compression handling outJoel Sing
2014-05-28EVP_MD_CTX_create() calls malloc and can return NULL. However, only one ofJoel Sing
2014-05-28There is no point in checking if a pointer is non-NULL before calling free,Joel Sing
2014-05-28More KNF.Joel Sing
2014-05-27Fix a Y2038 problem, by conversion of long to time_t.Theo de Raadt
2014-05-27Remove unused defines.Miod Vallat
2014-05-27Remove redundant test introduced in s3_pkt.c on 20001225, which got cargo-cultedMiod Vallat
2014-05-27Wrap some long lines.Joel Sing
2014-05-27Remove MemCheck_{on,off} that escaped last time around.Joel Sing
2014-05-27More KNF.Joel Sing
2014-05-27Fix ia64 cross-gcc target.Tobias Ulmer
2014-05-26Replace the following logic:Miod Vallat
2014-05-26Unchecked malloc() return value in SSL_COMP_add_compression_method(), in theMiod Vallat
2014-05-26We don't really to keep history in constructs such as:Miod Vallat
2014-05-26tls_decrypt_ticket(): memory leak and uncleaned EVP_CIPHER_CTX upon error.Miod Vallat
2014-05-26Make sure all error paths in dtls1_buffer_record() invoke SSLErr byMiod Vallat
2014-05-26Implement an improved version of the EVP AEAD API. TheJoel Sing
2014-05-26Use C99 initialisers for BIO_METHOD.Joel Sing
2014-05-26KNF.Joel Sing
2014-05-26repair some KNF missed by the script; ok jsingTheo de Raadt
2014-05-26KNF.Joel Sing
2014-05-26KNF.Joel Sing
2014-05-25heartbearts->heartbeats fixLoganaden Velvindron
2014-05-25calloc instead of malloc/memset. from Benjamin BaierTed Unangst