r849@spiff: Fredrik | 2005-11-09 10:00:04 +0100

fixed resource leak in _subprocess.CreateProcess when using
 explicit environments
This commit is contained in:
Fredrik Lundh 2005-11-12 10:15:03 +00:00
parent f5b7fd2239
commit bb4692b6f2

View file

@ -333,6 +333,9 @@ getenvironment(PyObject* environment)
/* PyObject_Print(out, stdout, 0); */
Py_XDECREF(keys);
Py_XDECREF(values);
return out;
error: