r15767@tombo: nickm | 2007-12-31 16:06:27 -0500

Note an unfreed cert


svn:r13008
This commit is contained in:
Nick Mathewson 2007-12-31 21:12:14 +00:00
parent 46a27c2f93
commit 71e117e444

View file

@ -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 */