Author: tkreuzer Date: Sat May 15 02:12:14 2010 New Revision: 47212
URL: http://svn.reactos.org/svn/reactos?rev=47212&view=rev Log: [GDIPLUS_WINETEST] Comment out GdipDisposeImage in 3 places, where it was crashing
See issue #5395 for more details.
Modified: trunk/rostests/winetests/gdiplus/graphics.c
Modified: trunk/rostests/winetests/gdiplus/graphics.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/gdiplus/graphics... ============================================================================== --- trunk/rostests/winetests/gdiplus/graphics.c [iso-8859-1] (original) +++ trunk/rostests/winetests/gdiplus/graphics.c [iso-8859-1] Sat May 15 02:12:14 2010 @@ -2353,7 +2353,8 @@ expect(Ok, status); expect(0xdeadbeef, color); GdipDeleteGraphics(graphics); - GdipDisposeImage((GpImage*)bitmap); + skip("skipping GdipDisposeImage, see bug 5395\n"); + //GdipDisposeImage((GpImage*)bitmap);
status = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat64bppARGB, NULL, &bitmap); expect(Ok, status); @@ -2363,7 +2364,8 @@ expect(Ok, status); expect(0xdeadbeef, color); GdipDeleteGraphics(graphics); - GdipDisposeImage((GpImage*)bitmap); + skip("skipping GdipDisposeImage, see bug 5395\n"); + //GdipDisposeImage((GpImage*)bitmap);
status = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat64bppPARGB, NULL, &bitmap); expect(Ok, status); @@ -2373,7 +2375,8 @@ expect(Ok, status); expect(0xdeadbeef, color); GdipDeleteGraphics(graphics); - GdipDisposeImage((GpImage*)bitmap); + skip("skipping GdipDisposeImage, see bug 5395\n"); + //GdipDisposeImage((GpImage*)bitmap);
status = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppRGB565, NULL, &bitmap); expect(Ok, status);