Author: spouliot
Date: 2006-08-10 15:20:56 -0400 (Thu, 10 Aug 2006)
New Revision: 63619

Modified:
   trunk/libgdiplus/src/graphics-path.c
Log:
forgot to save before committing :(

Modified: trunk/libgdiplus/src/graphics-path.c
===================================================================
--- trunk/libgdiplus/src/graphics-path.c        2006-08-10 19:17:07 UTC (rev 
63618)
+++ trunk/libgdiplus/src/graphics-path.c        2006-08-10 19:20:56 UTC (rev 
63619)
@@ -991,8 +991,8 @@
         if (length < 1)
                 return Ok;
         
-        pts = calloc(sizeof(GpPointF), length);
-        types = calloc(sizeof(byte), length);
+        pts = GdipCalloc (sizeof (GpPointF), length);
+        types = GdipCalloc (sizeof (byte), length);
 
         GdipGetPathPoints (addingPath, pts, length);
         GdipGetPathTypes (addingPath, types, length);

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to