rpcrt4: Handle all non-continuable exceptions in CStdStubBuffer_Invoke.

This commit is contained in:
Rob Shearman 2007-11-30 18:09:01 +00:00 committed by Alexandre Julliard
parent b711d35d40
commit a016d7b335
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(ole);
static WINE_EXCEPTION_FILTER(stub_filter)
{
if (GetExceptionCode() == EXCEPTION_ACCESS_VIOLATION)
if (GetExceptionInformation()->ExceptionRecord->ExceptionFlags & EXCEPTION_NONCONTINUABLE)
return EXCEPTION_CONTINUE_SEARCH;
return EXCEPTION_EXECUTE_HANDLER;
}