From: Steve Dower Date: Mon, 9 Sep 2019 13:24:15 +0000 (-0700) Subject: bpo-32587: Fixes unsafe downcast in PC/winreg.c (GH-15766) X-Git-Tag: v3.9.0a1~662 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ef66f31ce21cd759cc0c618c5c42ba6da0a06834;p=thirdparty%2FPython%2Fcpython.git bpo-32587: Fixes unsafe downcast in PC/winreg.c (GH-15766) --- diff --git a/PC/winreg.c b/PC/winreg.c index 37bc2c72dcde..72a7c380beef 100644 --- a/PC/winreg.c +++ b/PC/winreg.c @@ -772,7 +772,7 @@ Reg2Py(BYTE *retDataBuf, DWORD retDataSize, DWORD typ) return NULL; } PyList_SET_ITEM(obData, index, uni); - len -= slen + 1; + len -= Py_SAFE_DOWNCAST(slen + 1, size_t, int); } PyMem_Free(str);