mirror of
https://github.com/reactos/reactos.git
synced 2026-06-02 17:31:23 +08:00
[NTUSER] Fix stack memory disclosure in NtUserBuildPropList (#3023)
Fix structure alignment cause to stack memory disclosure in NtUserBuildPropList.
This commit is contained in:
committed by
GitHub
parent
f7865b8bfa
commit
ff50b0db2e
@@ -143,7 +143,7 @@ NtUserBuildPropList(
|
||||
PWND Window;
|
||||
PPROPERTY Property;
|
||||
PLIST_ENTRY ListEntry;
|
||||
PROPLISTITEM listitem, *li;
|
||||
PROPLISTITEM listitem = { 0 }, *li;
|
||||
NTSTATUS Status;
|
||||
DWORD Cnt = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user