[WINE]: Fix non-x86 versions of Wine's push/pop exception frame macro.

svn path=/trunk/; revision=49730
This commit is contained in:
Sir Richard
2010-11-23 16:35:48 +00:00
parent af01d7d129
commit a17fe7e176
+2 -2
View File
@@ -83,7 +83,7 @@ static inline EXCEPTION_REGISTRATION_RECORD *__wine_push_frame( EXCEPTION_REGIST
#else
NT_TIB *teb = (NT_TIB *)NtCurrentTeb();
frame->Prev = teb->ExceptionList;
teb->ExceptionList = frame;
teb->ExceptionList = (PVOID)frame;
return frame->Prev;
#endif
}
@@ -96,7 +96,7 @@ static inline EXCEPTION_REGISTRATION_RECORD *__wine_pop_frame( EXCEPTION_REGISTR
#else
NT_TIB *teb = (NT_TIB *)NtCurrentTeb();
frame->Prev = teb->ExceptionList;
teb->ExceptionList = frame;
teb->ExceptionList = (PVOID)frame;
return frame->Prev;
#endif
}