From aa83f5a5aa5ffab8bbc25b8fb76e1dcdb5ae8a96 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Fri, 11 Apr 2008 11:00:46 +0100 Subject: [PATCH] ole32: Use I_RpcExceptionFilter instead of custom exception filter for RPC calls. --- dlls/ole32/moniker.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/dlls/ole32/moniker.c b/dlls/ole32/moniker.c index 6a1c1e9631..413d11033f 100644 --- a/dlls/ole32/moniker.c +++ b/dlls/ole32/moniker.c @@ -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 */