Commit 209e04c2 authored by Benjamin Peterson's avatar Benjamin Peterson

plug ref leak

parent 283d0ba4
......@@ -429,6 +429,7 @@ zipimporter_find_loader(PyObject *obj, PyObject *args)
case 2: /* Return (None, [namespace_portion]) */
if (!(result = Py_BuildValue("O[O]", Py_None, namespace_portion)))
goto error;
Py_DECREF(namespace_portion);
return result;
}
/* Can't get here. */
......
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