Commit b74c3d41 authored by Miss Islington (bot)'s avatar Miss Islington (bot) Committed by Victor Stinner

Fix a memory leak in _msi.c (GH-4127) (#4308)

(cherry picked from commit cb04f751)
parent 69ea4b4d
......@@ -271,6 +271,7 @@ msiobj_dealloc(msiobj* msidb)
{
MsiCloseHandle(msidb->h);
msidb->h = 0;
PyObject_Del(msidb);
}
static PyObject*
......
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