Commit 0b6e5c55 authored by Greg Geldorp's avatar Greg Geldorp Committed by Alexandre Julliard

gdi32/tests: Skip test that crashes on 64-bit.

parent b421934e
......@@ -1664,6 +1664,7 @@ static void test_SetMetaFileBits(void)
ret = DeleteMetaFile(hmf);
ok(ret, "DeleteMetaFile(%p) error %d\n", hmf, GetLastError());
#ifndef _WIN64 /* Generates access violation on XP x64 and Win2003 x64 */
/* Now with zeroed out mtSize field */
memcpy(buf, MF_GRAPHICS_BITS, sizeof(MF_GRAPHICS_BITS));
mh = (METAHEADER *)buf;
......@@ -1681,6 +1682,7 @@ static void test_SetMetaFileBits(void)
ret = DeleteMetaFile(hmf);
ok(ret, "DeleteMetaFile(%p) error %d\n", hmf, GetLastError());
#endif
}
/* Simple APIs from mfdrv/graphics.c
......
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