From: Steve Dower <steve.dower@python.org>
Date: Mon, 9 Sep 2019 13:24:15 +0000 (-0700)
Subject: bpo-32587: Fixes unsafe downcast in PC/winreg.c (GH-15766)
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef66f31ce21cd759cc0c618c5c42ba6da0a06834;p=python

bpo-32587: Fixes unsafe downcast in PC/winreg.c (GH-15766)
---

diff --git a/PC/winreg.c b/PC/winreg.c
index 37bc2c72dc..72a7c380be 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);