Commit 2ce0957e authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

krnl386.exe16: Don't open code CONTAINING_RECORD().

parent c955f038
...@@ -223,7 +223,7 @@ static DWORD call16_handler( EXCEPTION_RECORD *record, EXCEPTION_REGISTRATION_RE ...@@ -223,7 +223,7 @@ static DWORD call16_handler( EXCEPTION_RECORD *record, EXCEPTION_REGISTRATION_RE
if (record->ExceptionFlags & (EH_UNWINDING | EH_EXIT_UNWIND)) if (record->ExceptionFlags & (EH_UNWINDING | EH_EXIT_UNWIND))
{ {
/* unwinding: restore the stack pointer in the TEB, and leave the Win16 mutex */ /* unwinding: restore the stack pointer in the TEB, and leave the Win16 mutex */
STACK32FRAME *frame32 = (STACK32FRAME *)((char *)frame - offsetof(STACK32FRAME,frame)); STACK32FRAME *frame32 = CONTAINING_RECORD(frame, STACK32FRAME, frame);
NtCurrentTeb()->WOW32Reserved = (void *)frame32->frame16; NtCurrentTeb()->WOW32Reserved = (void *)frame32->frame16;
_LeaveWin16Lock(); _LeaveWin16Lock();
} }
......
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