Browse Source

Add comment clarifying OpenSSL usage.

svn:r17498
Jacob Appelbaum 15 years ago
parent
commit
cf75162a0c
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/or/main.c

+ 2 - 0
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);
   }