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
873619e9
Commit
873619e9
authored
Mar 02, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 03, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Fixed use after free in HTMLElement_destructor.
parent
eaa6a9fd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
htmlelem.c
dlls/mshtml/htmlelem.c
+4
-1
No files found.
dlls/mshtml/htmlelem.c
View file @
873619e9
...
...
@@ -1649,7 +1649,10 @@ void HTMLElement_destructor(HTMLDOMNode *iface)
HTMLElement
*
This
=
impl_from_HTMLDOMNode
(
iface
);
HTMLDOMAttribute
*
attr
;
LIST_FOR_EACH_ENTRY
(
attr
,
&
This
->
attrs
,
HTMLDOMAttribute
,
entry
)
{
while
(
!
list_empty
(
&
This
->
attrs
))
{
attr
=
LIST_ENTRY
(
list_head
(
&
This
->
attrs
),
HTMLDOMAttribute
,
entry
);
list_remove
(
&
attr
->
entry
);
attr
->
elem
=
NULL
;
IHTMLDOMAttribute_Release
(
&
attr
->
IHTMLDOMAttribute_iface
);
}
...
...
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