diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2014-03-13 19:08:10 +0100 |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2014-03-13 19:08:10 +0100 |
| commit | 9cb1ec5fb5e4aeb6b3e48341c92b96cdd09e634b (patch) | |
| tree | 0ac23ca88cc7cc510e8010be74c19a5375050113 /PC | |
| parent | 58c767fa3046d00db1b853c3e9a26785d0b3ac8c (diff) | |
| download | cpython-git-9cb1ec5fb5e4aeb6b3e48341c92b96cdd09e634b.tar.gz | |
Issue #20908: PyMem_Malloc() must be used with PyMem_Free(), not with free()
Diffstat (limited to 'PC')
| -rw-r--r-- | PC/winreg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/winreg.c b/PC/winreg.c index 7671317726..d23810b65d 100644 --- a/PC/winreg.c +++ b/PC/winreg.c @@ -944,7 +944,7 @@ Reg2Py(BYTE *retDataBuf, DWORD retDataSize, DWORD typ) fixupMultiSZ(str, data, len); obData = PyList_New(s); if (obData == NULL) { - free(str); + PyMem_Free(str); return NULL; } for (index = 0; index < s; index++) @@ -954,7 +954,7 @@ Reg2Py(BYTE *retDataBuf, DWORD retDataSize, DWORD typ) PyErr_SetString(PyExc_OverflowError, "registry string is too long for a Python string"); Py_DECREF(obData); - free(str); + PyMem_Free(str); return NULL; } PyList_SetItem(obData, |
