Add comment clarifying OpenSSL usage.

svn:r17498
This commit is contained in:
Jacob Appelbaum 2008-12-07 01:14:49 +00:00
parent ba985f8576
commit cf75162a0c

View File

@ -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);
}