mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
ole32: Use I_RpcExceptionFilter instead of custom exception filter for RPC calls.
This commit is contained in:
parent
5a35bd4971
commit
aa83f5a5aa
@ -56,14 +56,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(ole);
|
||||
|
||||
static LONG WINAPI rpc_filter(EXCEPTION_POINTERS *eptr)
|
||||
{
|
||||
switch (eptr->ExceptionRecord->ExceptionCode)
|
||||
{
|
||||
case EXCEPTION_ACCESS_VIOLATION:
|
||||
case EXCEPTION_ILLEGAL_INSTRUCTION:
|
||||
return EXCEPTION_CONTINUE_SEARCH;
|
||||
default:
|
||||
return EXCEPTION_EXECUTE_HANDLER;
|
||||
}
|
||||
return I_RpcExceptionFilter(eptr->ExceptionRecord->ExceptionCode);
|
||||
}
|
||||
|
||||
/* define the structure of the running object table elements */
|
||||
|
Loading…
Reference in New Issue
Block a user