Commit 3e65064b authored by Mark Dickinson's avatar Mark Dickinson

Fix memory leak in ssl module.

parent abc7ad39
......@@ -857,6 +857,7 @@ PySSL_test_decode_certificate (PyObject *mod, PyObject *args) {
}
retval = _decode_certificate(x, verbose);
X509_free(x);
fail0:
Py_DECREF(filename);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment