Call X509_free() after we're done with the cert

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5139 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
brain 2006-09-03 23:21:49 +00:00
parent db3665d03e
commit 4a5b44027f

View File

@ -737,6 +737,8 @@ class ModuleSSLOpenSSL : public Module
{
certinfo->data.insert(std::make_pair("error","Not activated, or expired certificate"));
}
X509_free(cert);
}
};