Commit dcbbd9ea authored by Victor Stinner's avatar Victor Stinner

Fix a typo in PC/_subprocess.c

parent ea90e0fd
...@@ -463,7 +463,7 @@ sp_CreateProcess(PyObject* self, PyObject* args) ...@@ -463,7 +463,7 @@ sp_CreateProcess(PyObject* self, PyObject* args)
} }
if (environment) { if (environment) {
wenvironment = PyUnicode_AsUnicode(environment) wenvironment = PyUnicode_AsUnicode(environment);
if (wenvironment == NULL) if (wenvironment == NULL)
{ {
Py_XDECREF(environment); Py_XDECREF(environment);
......
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