mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 14:05:42 +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));
|
ProbeForWrite( lpWndClassEx, sizeof(WNDCLASSEXW), sizeof(ULONG));
|
||||||
RtlCopyMemory( &Safewcexw, lpWndClassEx, sizeof(WNDCLASSEXW));
|
RtlCopyMemory( &Safewcexw, lpWndClassEx, sizeof(WNDCLASSEXW));
|
||||||
|
if (ppszMenuName)
|
||||||
|
{
|
||||||
|
ProbeForWrite(ppszMenuName, sizeof(*ppszMenuName), sizeof(PVOID));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue