Commit 65c72c93 authored by Thomas Faber's avatar Thomas Faber Committed by Alexandre Julliard

gdiplus/tests: Disable double-freeing test.

parent 4cdb7ec8
......@@ -3488,8 +3488,11 @@ static void test_dispose(void)
stat = GdipDisposeImage(image);
expect(Ok, stat);
if (0) {
/* Can crash with page heap or if the heap region is decommitted. */
stat = GdipDisposeImage(image);
expect(ObjectBusy, stat);
}
memset(invalid_image, 0, 256);
stat = GdipDisposeImage((GpImage*)invalid_image);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment