Commit cb04f751 authored by Zackery Spytz's avatar Zackery Spytz Committed by Victor Stinner

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

parent 4135c893
......@@ -283,6 +283,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