mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 13:01:40 +00:00
[NTUSER] Fix stack memory disclosure in NtUserBuildPropList (#3023)
Fix structure alignment cause to stack memory disclosure in NtUserBuildPropList.
This commit is contained in:
parent
f7865b8bfa
commit
ff50b0db2e
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ NtUserBuildPropList(
|
|||
PWND Window;
|
||||
PPROPERTY Property;
|
||||
PLIST_ENTRY ListEntry;
|
||||
PROPLISTITEM listitem, *li;
|
||||
PROPLISTITEM listitem = { 0 }, *li;
|
||||
NTSTATUS Status;
|
||||
DWORD Cnt = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue