Skip to content

Commit 0e1f9e8

Browse files
[3.6] bpo-30745: Fix compiler warnings introduced in bpo-30730. (GH-2376) (#2378)
(cherry picked from commit 0ee32c1)
1 parent 20f1029 commit 0e1f9e8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Modules/_winapi.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -844,8 +844,7 @@ _winapi_CreateProcess_impl(PyObject *module, Py_UNICODE *application_name,
844844
PROCESS_INFORMATION pi;
845845
STARTUPINFOW si;
846846
PyObject* environment;
847-
const wchar_t *wenvironment;
848-
Py_ssize_t wenvironment_size;
847+
wchar_t *wenvironment;
849848

850849
ZeroMemory(&si, sizeof(si));
851850
si.cb = sizeof(si);

0 commit comments

Comments
 (0)