X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=crypto%2Fmem.c;h=b40a94ce1c6b99596d215c124a04c0d21dd4e422;hb=03c1d9f99d95e19d4940aae8587808924cab486a;hp=7bd29d6766ea3f00d7d5a3f7782add2200822626;hpb=c4acfb1fd049f52fb074b103be01cab5cf5c04f8;p=oweals%2Fopenssl.git diff --git a/crypto/mem.c b/crypto/mem.c index 7bd29d6766..b40a94ce1c 100644 --- a/crypto/mem.c +++ b/crypto/mem.c @@ -101,7 +101,7 @@ static void (*free_locked_func)(void *) = free; /* may be changed as long as 'allow_customize_debug' is set */ /* XXX use correct function pointer types */ -#if defined(CRYPTO_MDEBUG) && !defined(OPENSSL_FIPSCANISTER) +#if defined(CRYPTO_MDEBUG) /* use default functions from mem_dbg.c */ static void (*malloc_debug_func)(void *,int,const char *,int,int) = CRYPTO_dbg_malloc; @@ -364,6 +364,10 @@ void *CRYPTO_realloc_clean(void *str, int old_len, int num, const char *file, if (num <= 0) return NULL; + /* We don't support shrinking the buffer. Note the memcpy that copies + * |old_len| bytes to the new buffer, below. */ + if (num < old_len) return NULL; + if (realloc_debug_func != NULL) realloc_debug_func(str, NULL, num, file, line, 0); ret=malloc_ex_func(num,file,line);