From: Richard Levitte Date: Thu, 30 Nov 2000 12:19:54 +0000 (+0000) Subject: Turn off memory checking when loading new compression algorithms. X-Git-Tag: OpenSSL_0_9_6a-beta1~107^2~94 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=058123afb6e565446d6956e9c0c89f1b7a023467;ds=sidebyside Turn off memory checking when loading new compression algorithms. --- diff --git a/ssl/ssl_ciph.c b/ssl/ssl_ciph.c index f63163f26c..52a2c7f3d3 100644 --- a/ssl/ssl_ciph.c +++ b/ssl/ssl_ciph.c @@ -1053,6 +1053,7 @@ int SSL_COMP_add_compression_method(int id, COMP_METHOD *cm) SSL_COMP *comp; STACK_OF(SSL_COMP) *sk; + MemCheck_off(); comp=(SSL_COMP *)OPENSSL_malloc(sizeof(SSL_COMP)); comp->id=id; comp->method=cm; @@ -1062,10 +1063,13 @@ int SSL_COMP_add_compression_method(int id, COMP_METHOD *cm) sk=ssl_comp_methods; if ((sk == NULL) || !sk_SSL_COMP_push(sk,comp)) { + MemCheck_on(); SSLerr(SSL_F_SSL_COMP_ADD_COMPRESSION_METHOD,ERR_R_MALLOC_FAILURE); return(0); } else + { + MemCheck_on(); return(1); + } } -