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
2192f2de
Commit
2192f2de
authored
Apr 06, 2022
by
Huw Davies
Committed by
Alexandre Julliard
Apr 06, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
combase: Don't start dllhost if the CLSID key doesn't exist.
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
60e10a05
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
rpc.c
dlls/combase/rpc.c
+6
-0
No files found.
dlls/combase/rpc.c
View file @
2192f2de
...
...
@@ -538,6 +538,12 @@ static HRESULT create_surrogate_server(REFCLSID rclsid, HANDLE *process)
TRACE
(
"Attempting to start surrogate server for %s
\n
"
,
debugstr_guid
(
rclsid
));
hr
=
open_key_for_clsid
(
rclsid
,
NULL
,
KEY_READ
,
&
key
);
if
(
FAILED
(
hr
)
&&
(
arch
==
64
||
(
IsWow64Process
(
GetCurrentProcess
(),
&
is_wow64
)
&&
is_wow64
)))
hr
=
open_key_for_clsid
(
rclsid
,
NULL
,
opposite
|
KEY_READ
,
&
key
);
if
(
FAILED
(
hr
))
return
hr
;
RegCloseKey
(
key
);
hr
=
open_appidkey_from_clsid
(
rclsid
,
KEY_READ
,
&
key
);
if
(
FAILED
(
hr
)
&&
(
arch
==
64
||
(
IsWow64Process
(
GetCurrentProcess
(),
&
is_wow64
)
&&
is_wow64
)))
{
...
...
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