瀏覽代碼

Add comment clarifying OpenSSL usage.

svn:r17498
Jacob Appelbaum 16 年之前
父節點
當前提交
cf75162a0c
共有 1 個文件被更改,包括 2 次插入0 次删除
  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);
   }