Don't write to user space with after an error.

svn path=/trunk/; revision=28219
This commit is contained in:
James Tabor 2007-08-07 19:29:48 +00:00
parent 434e1ef9df
commit b82f6444f6

View file

@ -1210,6 +1210,9 @@ NtGdiGetDCPoint( HDC hDC, UINT iPoint, PPOINTL Point)
Ret = FALSE;
break;
}
if (!Ret)
{
_SEH_TRY
{
ProbeForWrite(Point,
@ -1222,6 +1225,7 @@ NtGdiGetDCPoint( HDC hDC, UINT iPoint, PPOINTL Point)
Status = _SEH_GetExceptionCode();
}
_SEH_END;
}
if(!NT_SUCCESS(Status))
{