Commit a251ea06 authored by Jeremy Hylton's avatar Jeremy Hylton

the PyDict_SetItem does not borrow a reference, so we need to decref

reported by Mark Hammon
parent 815d5b93
......@@ -351,6 +351,7 @@ get_inprogress_dict()
Py_DECREF(inprogress);
return NULL;
}
Py_DECREF(inprogress);
}
return inprogress;
}
......
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