diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-10-15 11:20:48 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-10-15 11:20:48 -0400 |
commit | 9f83142591dba5460f2cf09e49f716d5c7238f06 (patch) | |
tree | 558d1d3430532e7eb0b963e6ceba2b9e63d25cfa /src/or/main.c | |
parent | 469b847c70c7cb801fa806e3336697866c1453d1 (diff) | |
parent | 30e2d41a650876793b75bef04a2e18cbf5bc3fd6 (diff) | |
download | tor-9f83142591dba5460f2cf09e49f716d5c7238f06.tar.gz tor-9f83142591dba5460f2cf09e49f716d5c7238f06.zip |
Merge remote-tracking branch 'public/bug1031'
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 79fe06eea7..adc1f5d983 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -2677,7 +2677,7 @@ tor_main(int argc, char *argv[]) { /* 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); + int r = CRYPTO_set_mem_ex_functions(tor_malloc_, tor_realloc_, tor_free_); tor_assert(r); } #endif |