Fixed compilation of kernel32.dll.so on non-x86 processors.

This commit is contained in:
Phil Krylov 2005-09-06 09:21:50 +00:00 committed by Alexandre Julliard
parent 1eb5c683b7
commit 6306b962f4
1 changed files with 1 additions and 1 deletions

View File

@ -888,7 +888,7 @@ DWORD INSTR_EmulateInstruction( EXCEPTION_RECORD *rec, CONTEXT86 *context )
LONG CALLBACK INSTR_vectored_handler( EXCEPTION_POINTERS *ptrs )
{
EXCEPTION_RECORD *record = ptrs->ExceptionRecord;
CONTEXT *context = ptrs->ContextRecord;
CONTEXT86 *context = ptrs->ContextRecord;
if (wine_ldt_is_system(context->SegCs) &&
(record->ExceptionCode == EXCEPTION_ACCESS_VIOLATION ||