mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
Fix a typo in PC/_subprocess.c
This commit is contained in:
parent
ea90e0fd95
commit
dcbbd9ea21
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue