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
9bad7be3
Commit
9bad7be3
authored
Aug 01, 2023
by
Gabriel Ivăncescu
Committed by
Alexandre Julliard
Aug 02, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Use unlink and destructor in the vtbl for HTMLEventObj.
Signed-off-by:
Gabriel Ivăncescu
<
gabrielopcode@gmail.com
>
parent
548b6811
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
6 deletions
+28
-6
htmlevent.c
dlls/mshtml/htmlevent.c
+28
-6
No files found.
dlls/mshtml/htmlevent.c
View file @
9bad7be3
...
...
@@ -385,12 +385,8 @@ static ULONG WINAPI HTMLEventObj_Release(IHTMLEventObj *iface)
TRACE
(
"(%p) ref=%ld
\n
"
,
This
,
ref
);
if
(
!
ref
)
{
if
(
This
->
event
)
IDOMEvent_Release
(
&
This
->
event
->
IDOMEvent_iface
);
if
(
!
ref
)
release_dispex
(
&
This
->
dispex
);
free
(
This
);
}
return
ref
;
}
...
...
@@ -872,6 +868,32 @@ static inline HTMLEventObj *unsafe_impl_from_IHTMLEventObj(IHTMLEventObj *iface)
return
iface
->
lpVtbl
==
&
HTMLEventObjVtbl
?
impl_from_IHTMLEventObj
(
iface
)
:
NULL
;
}
static
inline
HTMLEventObj
*
HTMLEventObj_from_DispatchEx
(
DispatchEx
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
HTMLEventObj
,
dispex
);
}
static
void
HTMLEventObj_unlink
(
DispatchEx
*
dispex
)
{
HTMLEventObj
*
This
=
HTMLEventObj_from_DispatchEx
(
dispex
);
if
(
This
->
event
)
{
DOMEvent
*
event
=
This
->
event
;
This
->
event
=
NULL
;
IDOMEvent_Release
(
&
event
->
IDOMEvent_iface
);
}
}
static
void
HTMLEventObj_destructor
(
DispatchEx
*
dispex
)
{
HTMLEventObj
*
This
=
HTMLEventObj_from_DispatchEx
(
dispex
);
free
(
This
);
}
static
const
dispex_static_data_vtbl_t
HTMLEventObj_dispex_vtbl
=
{
HTMLEventObj_destructor
,
HTMLEventObj_unlink
};
static
const
tid_t
HTMLEventObj_iface_tids
[]
=
{
IHTMLEventObj_tid
,
0
...
...
@@ -879,7 +901,7 @@ static const tid_t HTMLEventObj_iface_tids[] = {
static
dispex_static_data_t
HTMLEventObj_dispex
=
{
L"MSEventObj"
,
NULL
,
&
HTMLEventObj_dispex_vtbl
,
DispCEventObj_tid
,
HTMLEventObj_iface_tids
};
...
...
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