[WIN32SS] fix memory leak in error case CID 716637

svn path=/trunk/; revision=68987
This commit is contained in:
Christoph von Wittich 2015-09-04 09:39:08 +00:00
parent 2231e344a2
commit 3b6684d9db

View file

@ -616,7 +616,10 @@ IntFillPolygon(
//DEBUG_PRINT_ACTIVE_EDGELIST(ActiveHead);
if (!ActiveHead)
{
POLYGONFILL_DestroyEdgeList(list);
return FALSE;
}
pLeft = ActiveHead;
pRight = pLeft->pNext;