[NTUSER] Fix stack memory disclosure in NtUserBuildPropList (#3023)

Fix structure alignment cause to stack memory disclosure in NtUserBuildPropList.
This commit is contained in:
Nguyen Trung Khanh 2020-08-08 12:05:22 +07:00 committed by GitHub
parent f7865b8bfa
commit ff50b0db2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -143,7 +143,7 @@ NtUserBuildPropList(
PWND Window;
PPROPERTY Property;
PLIST_ENTRY ListEntry;
PROPLISTITEM listitem, *li;
PROPLISTITEM listitem = { 0 }, *li;
NTSTATUS Status;
DWORD Cnt = 0;