mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 13:01:40 +00:00
[WIN32K:NTUSER] Add missing parameter probe in NtUserGetClassInfo.
This commit is contained in:
parent
e7814f19fb
commit
975e117780
1 changed files with 4 additions and 0 deletions
|
@ -2706,6 +2706,10 @@ NtUserGetClassInfo(
|
|||
{
|
||||
ProbeForWrite( lpWndClassEx, sizeof(WNDCLASSEXW), sizeof(ULONG));
|
||||
RtlCopyMemory( &Safewcexw, lpWndClassEx, sizeof(WNDCLASSEXW));
|
||||
if (ppszMenuName)
|
||||
{
|
||||
ProbeForWrite(ppszMenuName, sizeof(*ppszMenuName), sizeof(PVOID));
|
||||
}
|
||||
}
|
||||
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue