kernel32: Fix the image size in a test to avoid a BSOD on Windows XP SP1.

This commit is contained in:
Francois Gouget 2007-11-05 12:35:29 +01:00 committed by Alexandre Julliard
parent 83e2f44268
commit 94799c3cc7
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ START_TEST(loader)
},
{ &dos_header, sizeof(dos_header),
1, sizeof(IMAGE_OPTIONAL_HEADER), 0x200, 0x200,
sizeof(dos_header) + sizeof(nt_header) + sizeof(IMAGE_SECTION_HEADER) + 0x1000,
sizeof(dos_header) + sizeof(nt_header) + sizeof(IMAGE_SECTION_HEADER) + 0x200,
sizeof(dos_header) + sizeof(nt_header) + sizeof(IMAGE_SECTION_HEADER),
ERROR_SUCCESS
},