[win32k]
authorGiannis Adamopoulos <gadamopoulos@reactos.org>
Thu, 7 Oct 2010 19:14:49 +0000 (19:14 +0000)
committerGiannis Adamopoulos <gadamopoulos@reactos.org>
Thu, 7 Oct 2010 19:14:49 +0000 (19:14 +0000)
- Fix an ancient FIXME in PATH_PathToRegion

svn path=/trunk/; revision=49039

reactos/subsystems/win32/win32k/objects/path.c

index 21ecb7c..04a1314 100644 (file)
@@ -1062,8 +1062,6 @@ PATH_PathToRegion ( PPATH pPath, INT nPolyFillMode, HRGN *pHrgn )
 
   PATH_FlattenPath ( pPath );
 
-  /* FIXME: What happens when number of points is zero? */
-
   /* First pass: Find out how many strokes there are in the path */
   /* FIXME: We could eliminate this with some bookkeeping in GdiPath */
   numStrokes=0;
@@ -1071,6 +1069,11 @@ PATH_PathToRegion ( PPATH pPath, INT nPolyFillMode, HRGN *pHrgn )
     if((pPath->pFlags[i] & ~PT_CLOSEFIGURE) == PT_MOVETO)
       numStrokes++;
 
+  if(numStrokes == 0)
+  {
+      return FALSE;
+  }
+
   /* Allocate memory for number-of-points-in-stroke array */
   pNumPointsInStroke = ExAllocatePoolWithTag(PagedPool, sizeof(ULONG) * numStrokes, TAG_PATH);
   if(!pNumPointsInStroke)