summaryrefslogtreecommitdiffstats
path: root/crypto/openssl/crypto/mem.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssl/crypto/mem.c')
-rw-r--r--crypto/openssl/crypto/mem.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/crypto/openssl/crypto/mem.c b/crypto/openssl/crypto/mem.c
index dd86733..6635167 100644
--- a/crypto/openssl/crypto/mem.c
+++ b/crypto/openssl/crypto/mem.c
@@ -324,8 +324,8 @@ void *CRYPTO_realloc(void *str, int num, const char *file, int line)
if (str == NULL)
return CRYPTO_malloc(num, file, line);
- if (num <= 0) return NULL;
-
+ if (num <= 0) return NULL;
+
if (realloc_debug_func != NULL)
realloc_debug_func(str, NULL, num, file, line, 0);
ret = realloc_ex_func(str,num,file,line);
@@ -345,9 +345,9 @@ void *CRYPTO_realloc_clean(void *str, int old_len, int num, const char *file,
if (str == NULL)
return CRYPTO_malloc(num, file, line);
-
- if (num <= 0) return NULL;
-
+
+ if (num <= 0) return NULL;
+
if (realloc_debug_func != NULL)
realloc_debug_func(str, NULL, num, file, line, 0);
ret=malloc_ex_func(num,file,line);
OpenPOWER on IntegriCloud