diff options
author | Rich Salz <rsalz@akamai.com> | 2019-12-15 00:54:14 +0100 |
---|---|---|
committer | Shane Lontis <shane.lontis@oracle.com> | 2019-12-18 06:06:15 +0100 |
commit | f64f26220442db3c6913188e6014e5bc5bc34653 (patch) | |
tree | 101f02c788702c67a95aab622faf47ae288a0ac5 | |
parent | Cleanup legacy digest methods. (diff) | |
download | openssl-f64f26220442db3c6913188e6014e5bc5bc34653.tar.xz openssl-f64f26220442db3c6913188e6014e5bc5bc34653.zip |
Fix build when enabling mdebug options.
Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/10629)
-rw-r--r-- | crypto/mem.c | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/crypto/mem.c b/crypto/mem.c index f5e8f2445a..640107be40 100644 --- a/crypto/mem.c +++ b/crypto/mem.c @@ -145,14 +145,6 @@ static int shouldfail(void) len = strlen(buff); if (write(md_tracefd, buff, len) != len) perror("shouldfail write failed"); -# ifndef OPENSSL_NO_CRYPTO_MDEBUG_BACKTRACE - if (shoulditfail) { - void *addrs[30]; - int num = backtrace(addrs, OSSL_NELEM(addrs)); - - backtrace_symbols_fd(addrs, num, md_tracefd); - } -# endif } # endif @@ -305,6 +297,24 @@ int CRYPTO_mem_debug_pop(void) return -1; } +void CRYPTO_mem_debug_malloc(void *addr, size_t num, int flag, + const char *file, int line) +{ + (void)addr; (void)num; (void)flag; (void)file; (void)line; +} + +void CRYPTO_mem_debug_realloc(void *addr1, void *addr2, size_t num, int flag, + const char *file, int line) +{ + (void)addr1; (void)addr2; (void)num; (void)flag; (void)file; (void)line; +} + +void CRYPTO_mem_debug_free(void *addr, int flag, + const char *file, int line) +{ + (void)addr; (void)flag; (void)file; (void)line; +} + int CRYPTO_mem_leaks(BIO *b) { (void)b; |