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
5a687bb4
Commit
5a687bb4
authored
Aug 03, 2023
by
Gabriel Ivăncescu
Committed by
Alexandre Julliard
Aug 04, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Use unlink and destructor in the vtbl for HTMLDOMImplementation.
Signed-off-by:
Gabriel Ivăncescu
<
gabrielopcode@gmail.com
>
parent
62d39e86
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
7 deletions
+25
-7
omnavigator.c
dlls/mshtml/omnavigator.c
+25
-7
No files found.
dlls/mshtml/omnavigator.c
View file @
5a687bb4
...
...
@@ -99,13 +99,8 @@ static ULONG WINAPI HTMLDOMImplementation_Release(IHTMLDOMImplementation *iface)
TRACE
(
"(%p) ref=%ld
\n
"
,
This
,
ref
);
if
(
!
ref
)
{
assert
(
!
This
->
browser
);
if
(
This
->
implementation
)
nsIDOMDOMImplementation_Release
(
This
->
implementation
);
if
(
!
ref
)
release_dispex
(
&
This
->
dispex
);
free
(
This
);
}
return
ref
;
}
...
...
@@ -294,6 +289,29 @@ static const IHTMLDOMImplementation2Vtbl HTMLDOMImplementation2Vtbl = {
HTMLDOMImplementation2_hasFeature
};
static
inline
HTMLDOMImplementation
*
HTMLDOMImplementation_from_DispatchEx
(
DispatchEx
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
HTMLDOMImplementation
,
dispex
);
}
static
void
HTMLDOMImplementation_unlink
(
DispatchEx
*
dispex
)
{
HTMLDOMImplementation
*
This
=
HTMLDOMImplementation_from_DispatchEx
(
dispex
);
unlink_ref
(
&
This
->
implementation
);
}
static
void
HTMLDOMImplementation_destructor
(
DispatchEx
*
dispex
)
{
HTMLDOMImplementation
*
This
=
HTMLDOMImplementation_from_DispatchEx
(
dispex
);
assert
(
!
This
->
browser
);
free
(
This
);
}
static
const
dispex_static_data_vtbl_t
HTMLDOMImplementation_dispex_vtbl
=
{
HTMLDOMImplementation_destructor
,
HTMLDOMImplementation_unlink
};
static
void
HTMLDOMImplementation_init_dispex_info
(
dispex_data_t
*
info
,
compat_mode_t
compat_mode
)
{
if
(
compat_mode
>=
COMPAT_MODE_IE9
)
...
...
@@ -306,7 +324,7 @@ static const tid_t HTMLDOMImplementation_iface_tids[] = {
};
static
dispex_static_data_t
HTMLDOMImplementation_dispex
=
{
L"DOMImplementation"
,
NULL
,
&
HTMLDOMImplementation_dispex_vtbl
,
DispHTMLDOMImplementation_tid
,
HTMLDOMImplementation_iface_tids
,
HTMLDOMImplementation_init_dispex_info
...
...
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