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
6d63a630
Commit
6d63a630
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 HTMLStyleSheetRule.
Signed-off-by:
Gabriel Ivăncescu
<
gabrielopcode@gmail.com
>
parent
ae9aa7ec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
6 deletions
+24
-6
htmlstylesheet.c
dlls/mshtml/htmlstylesheet.c
+24
-6
No files found.
dlls/mshtml/htmlstylesheet.c
View file @
6d63a630
...
...
@@ -123,12 +123,8 @@ static ULONG WINAPI HTMLStyleSheetRule_Release(IHTMLStyleSheetRule *iface)
TRACE
(
"(%p) ref=%ld
\n
"
,
This
,
ref
);
if
(
!
ref
)
{
if
(
!
ref
)
release_dispex
(
&
This
->
dispex
);
if
(
This
->
nsstylesheetrule
)
nsIDOMCSSRule_Release
(
This
->
nsstylesheetrule
);
free
(
This
);
}
return
ref
;
}
...
...
@@ -206,13 +202,35 @@ static const IHTMLStyleSheetRuleVtbl HTMLStyleSheetRuleVtbl = {
HTMLStyleSheetRule_get_readOnly
};
static
inline
HTMLStyleSheetRule
*
HTMLStyleSheetRule_from_DispatchEx
(
DispatchEx
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
HTMLStyleSheetRule
,
dispex
);
}
static
void
HTMLStyleSheetRule_unlink
(
DispatchEx
*
dispex
)
{
HTMLStyleSheetRule
*
This
=
HTMLStyleSheetRule_from_DispatchEx
(
dispex
);
unlink_ref
(
&
This
->
nsstylesheetrule
);
}
static
void
HTMLStyleSheetRule_destructor
(
DispatchEx
*
dispex
)
{
HTMLStyleSheetRule
*
This
=
HTMLStyleSheetRule_from_DispatchEx
(
dispex
);
free
(
This
);
}
static
const
dispex_static_data_vtbl_t
HTMLStyleSheetRule_dispex_vtbl
=
{
HTMLStyleSheetRule_destructor
,
HTMLStyleSheetRule_unlink
};
static
const
tid_t
HTMLStyleSheetRule_iface_tids
[]
=
{
IHTMLStyleSheetRule_tid
,
0
};
static
dispex_static_data_t
HTMLStyleSheetRule_dispex
=
{
L"CSSStyleRule"
,
NULL
,
&
HTMLStyleSheetRule_dispex_vtbl
,
DispHTMLStyleSheetRule_tid
,
HTMLStyleSheetRule_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