mirror of
https://github.com/python/cpython.git
synced 2025-09-29 11:45:57 +00:00
bpo-30745: Fix compiler warnings introduced in bpo-30730. (#2376)
This commit is contained in:
parent
cab469245d
commit
0ee32c1481
1 changed files with 1 additions and 2 deletions
|
@ -844,8 +844,7 @@ _winapi_CreateProcess_impl(PyObject *module, Py_UNICODE *application_name,
|
||||||
PROCESS_INFORMATION pi;
|
PROCESS_INFORMATION pi;
|
||||||
STARTUPINFOW si;
|
STARTUPINFOW si;
|
||||||
PyObject* environment;
|
PyObject* environment;
|
||||||
const wchar_t *wenvironment;
|
wchar_t *wenvironment;
|
||||||
Py_ssize_t wenvironment_size;
|
|
||||||
|
|
||||||
ZeroMemory(&si, sizeof(si));
|
ZeroMemory(&si, sizeof(si));
|
||||||
si.cb = sizeof(si);
|
si.cb = sizeof(si);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue