From c99de0533debc8a6ed08b47b414bdea19457eafd Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Wed, 16 Dec 2015 16:51:12 -0500 Subject: Rename *_realloc_clean to *_clear_realloc Just like *_clear_free routines. Previously undocumented, used a half-dozen times within OpenSSL source. Reviewed-by: Richard Levitte --- crypto/mem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/mem.c') diff --git a/crypto/mem.c b/crypto/mem.c index 7ecf0aebeb..939ad69775 100644 --- a/crypto/mem.c +++ b/crypto/mem.c @@ -337,7 +337,7 @@ void *CRYPTO_realloc(void *str, size_t num, const char *file, int line) return ret; } -void *CRYPTO_realloc_clean(void *str, size_t old_len, size_t num, +void *CRYPTO_clear_realloc(void *str, size_t old_len, size_t num, const char *file, int line) { void *ret = NULL; -- cgit v1.2.3