Build on FreeBSD with gcc 4.6.
[oweals/openssl.git] / crypto / mem.c
index 73d68b5f0bf84e423b705916d8740c46f4fc8bc2..b40a94ce1c6b99596d215c124a04c0d21dd4e422 100644 (file)
@@ -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);