kernel32: Fix the image size in a test to avoid a BSOD on Windows XP SP1.
This commit is contained in:
parent
83e2f44268
commit
94799c3cc7
|
@ -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
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue