Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
dbc14a5c
Commit
dbc14a5c
authored
Dec 19, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Revert exception handler change.
The handler does the opposite of normal page fault handlers.
parent
d076748e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
rpc.c
dlls/ole32/rpc.c
+8
-1
No files found.
dlls/ole32/rpc.c
View file @
dbc14a5c
...
@@ -110,6 +110,13 @@ struct dispatch_params
...
@@ -110,6 +110,13 @@ struct dispatch_params
HRESULT
hr
;
/* hresult (out) */
HRESULT
hr
;
/* hresult (out) */
};
};
static
WINE_EXCEPTION_FILTER
(
ole_filter
)
{
if
(
GetExceptionCode
()
==
EXCEPTION_ACCESS_VIOLATION
)
return
EXCEPTION_CONTINUE_SEARCH
;
return
EXCEPTION_EXECUTE_HANDLER
;
}
static
HRESULT
WINAPI
RpcChannelBuffer_QueryInterface
(
LPRPCCHANNELBUFFER
iface
,
REFIID
riid
,
LPVOID
*
ppv
)
static
HRESULT
WINAPI
RpcChannelBuffer_QueryInterface
(
LPRPCCHANNELBUFFER
iface
,
REFIID
riid
,
LPVOID
*
ppv
)
{
{
*
ppv
=
NULL
;
*
ppv
=
NULL
;
...
@@ -446,7 +453,7 @@ void RPC_ExecuteCall(struct dispatch_params *params)
...
@@ -446,7 +453,7 @@ void RPC_ExecuteCall(struct dispatch_params *params)
{
{
params
->
hr
=
IRpcStubBuffer_Invoke
(
params
->
stub
,
params
->
msg
,
params
->
chan
);
params
->
hr
=
IRpcStubBuffer_Invoke
(
params
->
stub
,
params
->
msg
,
params
->
chan
);
}
}
__EXCEPT
_PAGE_FAULT
__EXCEPT
(
ole_filter
)
{
{
params
->
hr
=
GetExceptionCode
();
params
->
hr
=
GetExceptionCode
();
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment