diff options
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/main.c b/src/or/main.c index 459d347bb..955ae41dd 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -2063,6 +2063,8 @@ tor_main(int argc, char *argv[]) init_logging(); #ifdef USE_DMALLOC { + /* Instruct OpenSSL to use our internal wrappers for malloc, + realloc and free. */ int r = CRYPTO_set_mem_ex_functions(_tor_malloc, _tor_realloc, _tor_free); tor_assert(r); } |