Commit 84b5ac9b authored by Christian Heimes's avatar Christian Heimes Committed by Miss Islington (bot)

[2.7] bpo-36179: Fix ref leaks in _hashopenssl (GH-12158) (GH-12166)



Fix two unlikely reference leaks in _hashopenssl. The leaks only occur in
out-of-memory cases. Thanks to Charalampos Stratakis.
Signed-off-by: default avatarChristian Heimes <christian@python.org>

https://bugs.python.org/issue36179.
(cherry picked from commit b7bc283a)
Co-authored-by: default avatarChristian Heimes <christian@python.org>



https://bugs.python.org/issue36179
parent 710dcfd2
Fix two unlikely reference leaks in _hashopenssl. The leaks only occur in
out-of-memory cases.
......@@ -133,12 +133,6 @@ newEVPobject(PyObject *name)
if (retval == NULL)
return NULL;
retval->ctx = EVP_MD_CTX_new();
if (retval->ctx == NULL) {
PyErr_NoMemory();
return NULL;
}
/* save the name for .name to return */
Py_INCREF(name);
retval->name = name;
......@@ -146,6 +140,13 @@ newEVPobject(PyObject *name)
retval->lock = NULL;
#endif
retval->ctx = EVP_MD_CTX_new();
if (retval->ctx == NULL) {
Py_DECREF(retval);
PyErr_NoMemory();
return NULL;
}
return retval;
}
......@@ -205,6 +206,7 @@ EVP_copy(EVPobject *self, PyObject *unused)
return NULL;
if (!locked_EVP_MD_CTX_copy(newobj->ctx, self)) {
Py_DECREF(newobj);
return _setException(PyExc_ValueError);
}
return (PyObject *)newobj;
......
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