Commit 176a6ca2 authored by Alexandre Julliard's avatar Alexandre Julliard

krnl386: Use the IMAGE_FIRST_SECTION helper macro.

parent 60f0c1b3
...@@ -983,10 +983,7 @@ void WINAPI __wine_vxd_win32s( CONTEXT *context ) ...@@ -983,10 +983,7 @@ void WINAPI __wine_vxd_win32s( CONTEXT *context )
struct Win32sModule *module = moduleTable + context->Ecx; struct Win32sModule *module = moduleTable + context->Ecx;
IMAGE_NT_HEADERS *nt_header = RtlImageNtHeader( (HMODULE)module->baseAddr ); IMAGE_NT_HEADERS *nt_header = RtlImageNtHeader( (HMODULE)module->baseAddr );
IMAGE_SECTION_HEADER *pe_seg = (IMAGE_SECTION_HEADER*)((char *)&nt_header->OptionalHeader + IMAGE_SECTION_HEADER *pe_seg = IMAGE_FIRST_SECTION( nt_header );
nt_header->FileHeader.SizeOfOptionalHeader);
HFILE image = _lopen(module->pathName, OF_READ); HFILE image = _lopen(module->pathName, OF_READ);
BOOL error = (image == HFILE_ERROR); BOOL error = (image == HFILE_ERROR);
UINT i; UINT i;
......
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