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
cd6e41dd
Commit
cd6e41dd
authored
Nov 01, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Use real object CLSID when creating instance from context info.
parent
647817b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
compobj.c
dlls/ole32/compobj.c
+3
-1
No files found.
dlls/ole32/compobj.c
View file @
cd6e41dd
...
...
@@ -2873,12 +2873,14 @@ HRESULT WINAPI CoGetClassObject(
ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION
,
rclsid
,
&
data
))
{
struct
comclassredirect_data
*
comclass
=
(
struct
comclassredirect_data
*
)
data
.
lpData
;
clsreg
.
u
.
actctx
.
hactctx
=
data
.
hActCtx
;
clsreg
.
u
.
actctx
.
data
=
data
.
lpData
;
clsreg
.
u
.
actctx
.
section
=
data
.
lpSectionBase
;
clsreg
.
hkey
=
FALSE
;
hres
=
get_inproc_class_object
(
apt
,
&
clsreg
,
r
clsid
,
iid
,
!
(
dwClsContext
&
WINE_CLSCTX_DONT_HOST
),
ppv
);
hres
=
get_inproc_class_object
(
apt
,
&
clsreg
,
&
comclass
->
clsid
,
iid
,
!
(
dwClsContext
&
WINE_CLSCTX_DONT_HOST
),
ppv
);
ReleaseActCtx
(
data
.
hActCtx
);
if
(
release_apt
)
apartment_release
(
apt
);
return
hres
;
...
...
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