From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 22 Apr 2019 17:20:33 +0000 (-0700) Subject: bpo-9194: Fix the bounds checking in winreg.c's fixupMultiSZ() (GH-12687) X-Git-Tag: v3.7.4rc1~219 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7038deed09784a03e2a7bad500f0054d29876ae7;p=thirdparty%2FPython%2Fcpython.git bpo-9194: Fix the bounds checking in winreg.c's fixupMultiSZ() (GH-12687) (cherry picked from commit 56ed86490cb8221c874d432461d77702437f63e5) Co-authored-by: Zackery Spytz --- diff --git a/PC/winreg.c b/PC/winreg.c index e3801b257b07..96dd4ef059be 100644 --- a/PC/winreg.c +++ b/PC/winreg.c @@ -520,7 +520,7 @@ fixupMultiSZ(wchar_t **str, wchar_t *data, int len) Q = data + len; for (P = data, i = 0; P < Q && *P != '\0'; P++, i++) { str[i] = P; - for(; *P != '\0'; P++) + for (; P < Q && *P != '\0'; P++) ; } }