mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
mshtml: Fixed node leak in HTMLEventObj.
This commit is contained in:
parent
1d61146cb6
commit
86aecc8488
@ -289,6 +289,8 @@ static ULONG WINAPI HTMLEventObj_Release(IHTMLEventObj *iface)
|
||||
TRACE("(%p) ref=%d\n", This, ref);
|
||||
|
||||
if(!ref) {
|
||||
if(This->target)
|
||||
IHTMLDOMNode_Release(&This->target->IHTMLDOMNode_iface);
|
||||
if(This->nsevent)
|
||||
nsIDOMEvent_Release(This->nsevent);
|
||||
release_dispex(&This->dispex);
|
||||
|
Loading…
Reference in New Issue
Block a user