mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Fix compilation warning on Windows
This commit is contained in:
parent
ef8d95c498
commit
f2b69df023
1 changed files with 2 additions and 2 deletions
|
|
@ -1129,7 +1129,7 @@ PyEnumValue(PyObject *self, PyObject *args)
|
||||||
int index;
|
int index;
|
||||||
long rc;
|
long rc;
|
||||||
wchar_t *retValueBuf;
|
wchar_t *retValueBuf;
|
||||||
wchar_t *tmpBuf;
|
BYTE *tmpBuf;
|
||||||
BYTE *retDataBuf;
|
BYTE *retDataBuf;
|
||||||
DWORD retValueSize, bufValueSize;
|
DWORD retValueSize, bufValueSize;
|
||||||
DWORD retDataSize, bufDataSize;
|
DWORD retDataSize, bufDataSize;
|
||||||
|
|
@ -1177,7 +1177,7 @@ PyEnumValue(PyObject *self, PyObject *args)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
bufDataSize *= 2;
|
bufDataSize *= 2;
|
||||||
tmpBuf = (wchar_t *)PyMem_Realloc(retDataBuf, bufDataSize);
|
tmpBuf = (BYTE *)PyMem_Realloc(retDataBuf, bufDataSize);
|
||||||
if (tmpBuf == NULL) {
|
if (tmpBuf == NULL) {
|
||||||
PyErr_NoMemory();
|
PyErr_NoMemory();
|
||||||
retVal = NULL;
|
retVal = NULL;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue