Explorar o código

r15767@tombo: nickm | 2007-12-31 16:06:27 -0500
Note an unfreed cert


svn:r13008

Nick Mathewson %!s(int64=18) %!d(string=hai) anos
pai
achega
71e117e444
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      src/common/tortls.c

+ 2 - 1
src/common/tortls.c

@@ -511,7 +511,8 @@ tor_tls_context_new(crypto_pk_env_t *identity, const char *nickname,
   if (idcert) {
     X509_STORE *s = SSL_CTX_get_cert_store(result->ctx);
     tor_assert(s);
-    X509_STORE_add_cert(s, idcert);
+    X509_STORE_add_cert(s, idcert); /*XXXX020 This cert seems not to get
+                                     * freed.  Fix that! */
   }
 #endif
   idcert=NULL; /* The context now owns the reference to idcert */