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
947e8b01
Commit
947e8b01
authored
Sep 08, 2023
by
Gabriel Ivăncescu
Committed by
Alexandre Julliard
Sep 08, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Use query_interface in the dispex vtbl for HTMLNamespaceCollection.
Signed-off-by:
Gabriel Ivăncescu
<
gabrielopcode@gmail.com
>
parent
2e023371
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
14 deletions
+15
-14
omnavigator.c
dlls/mshtml/omnavigator.c
+15
-14
No files found.
dlls/mshtml/omnavigator.c
View file @
947e8b01
...
...
@@ -2424,22 +2424,12 @@ static HRESULT WINAPI HTMLNamespaceCollection_QueryInterface(IHTMLNamespaceColle
{
HTMLNamespaceCollection
*
This
=
impl_from_IHTMLNamespaceCollection
(
iface
);
TRACE
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_mshtml_guid
(
riid
),
ppv
);
if
(
IsEqualGUID
(
&
IID_IUnknown
,
riid
))
{
*
ppv
=
&
This
->
IHTMLNamespaceCollection_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IHTMLNamespaceCollection
,
riid
))
{
*
ppv
=
&
This
->
IHTMLNamespaceCollection_iface
;
}
else
if
(
dispex_query_interface
(
&
This
->
dispex
,
riid
,
ppv
))
{
if
(
dispex_query_interface
(
&
This
->
dispex
,
riid
,
ppv
))
return
*
ppv
?
S_OK
:
E_NOINTERFACE
;
}
else
{
WARN
(
"Unsupported interface %s
\n
"
,
debugstr_mshtml_guid
(
riid
));
*
ppv
=
NULL
;
return
E_NOINTERFACE
;
}
IUnknown_AddRef
((
IUnknown
*
)
*
ppv
);
return
S_OK
;
*
ppv
=
NULL
;
WARN
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_mshtml_guid
(
riid
),
ppv
);
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
HTMLNamespaceCollection_AddRef
(
IHTMLNamespaceCollection
*
iface
)
...
...
@@ -2538,6 +2528,16 @@ static inline HTMLNamespaceCollection *HTMLNamespaceCollection_from_DispatchEx(D
return
CONTAINING_RECORD
(
iface
,
HTMLNamespaceCollection
,
dispex
);
}
static
void
*
HTMLNamespaceCollection_query_interface
(
DispatchEx
*
dispex
,
REFIID
riid
)
{
HTMLNamespaceCollection
*
This
=
HTMLNamespaceCollection_from_DispatchEx
(
dispex
);
if
(
IsEqualGUID
(
&
IID_IHTMLNamespaceCollection
,
riid
))
return
&
This
->
IHTMLNamespaceCollection_iface
;
return
NULL
;
}
static
void
HTMLNamespaceCollection_destructor
(
DispatchEx
*
dispex
)
{
HTMLNamespaceCollection
*
This
=
HTMLNamespaceCollection_from_DispatchEx
(
dispex
);
...
...
@@ -2545,6 +2545,7 @@ static void HTMLNamespaceCollection_destructor(DispatchEx *dispex)
}
static
const
dispex_static_data_vtbl_t
HTMLNamespaceCollection_dispex_vtbl
=
{
.
query_interface
=
HTMLNamespaceCollection_query_interface
,
.
destructor
=
HTMLNamespaceCollection_destructor
,
};
...
...
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