[WIN32K] Fix missing NULL check in NtGdiPathToRegion

This commit is contained in:
Timo Kreuzer 2022-12-03 10:27:33 +02:00
parent 60af8194bb
commit 84b09285c8

View file

@ -2893,6 +2893,14 @@ NtGdiPathToRegion(HDC hDC)
hrgnRval = Rgn->BaseObject.hHmgr;
pNewPath = PATH_FlattenPath(pPath);
if (pNewPath == NULL)
{
ERR("Failed to flatten path %p\n", pDc->dclevel.hPath);
REGION_Delete(Rgn);
PATH_UnlockPath(pPath);
DC_UnlockDc(pDc);
return NULL;
}
Ret = PATH_PathToRegion(pNewPath, pdcattr->jFillMode, Rgn);