Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
dc5d07f5
Commit
dc5d07f5
authored
Mar 20, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 20, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fusion: Return interface pointer from QI instead of impl pointer.
parent
20e302e2
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
asmcache.c
dlls/fusion/asmcache.c
+2
-2
asmenum.c
dlls/fusion/asmenum.c
+1
-1
asmname.c
dlls/fusion/asmname.c
+1
-1
No files found.
dlls/fusion/asmcache.c
View file @
dc5d07f5
...
...
@@ -172,7 +172,7 @@ static HRESULT WINAPI IAssemblyCacheImpl_QueryInterface(IAssemblyCache *iface,
IsEqualIID
(
riid
,
&
IID_IAssemblyCache
))
{
IAssemblyCache_AddRef
(
iface
);
*
ppobj
=
This
;
*
ppobj
=
&
This
->
IAssemblyCache_iface
;
return
S_OK
;
}
...
...
@@ -601,7 +601,7 @@ static HRESULT WINAPI IAssemblyCacheItemImpl_QueryInterface(IAssemblyCacheItem *
IsEqualIID
(
riid
,
&
IID_IAssemblyCacheItem
))
{
IAssemblyCacheItem_AddRef
(
iface
);
*
ppobj
=
This
;
*
ppobj
=
&
This
->
IAssemblyCacheItem_iface
;
return
S_OK
;
}
...
...
dlls/fusion/asmenum.c
View file @
dc5d07f5
...
...
@@ -72,7 +72,7 @@ static HRESULT WINAPI IAssemblyEnumImpl_QueryInterface(IAssemblyEnum *iface,
IsEqualIID
(
riid
,
&
IID_IAssemblyEnum
))
{
IAssemblyEnum_AddRef
(
iface
);
*
ppobj
=
This
;
*
ppobj
=
&
This
->
IAssemblyEnum_iface
;
return
S_OK
;
}
...
...
dlls/fusion/asmname.c
View file @
dc5d07f5
...
...
@@ -85,7 +85,7 @@ static HRESULT WINAPI IAssemblyNameImpl_QueryInterface(IAssemblyName *iface,
IsEqualIID
(
riid
,
&
IID_IAssemblyName
))
{
IAssemblyName_AddRef
(
iface
);
*
ppobj
=
This
;
*
ppobj
=
&
This
->
IAssemblyName_iface
;
return
S_OK
;
}
...
...
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