Commit 56ed8649 authored by Zackery Spytz's avatar Zackery Spytz Committed by Steve Dower

bpo-9194: Fix the bounds checking in winreg.c's fixupMultiSZ() (GH-12687)

parent 6ef726af
......@@ -521,7 +521,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++)
;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment