mirror of
https://github.com/reactos/wine.git
synced 2025-02-28 00:39:06 +00:00
mshtml: Added ref counting to node object.
This commit is contained in:
parent
71894ead1f
commit
d6ccaa43a6
@ -50,19 +50,26 @@ static HRESULT WINAPI HTMLDOMNode_QueryInterface(IHTMLDOMNode *iface,
|
||||
static ULONG WINAPI HTMLDOMNode_AddRef(IHTMLDOMNode *iface)
|
||||
{
|
||||
HTMLDOMNode *This = HTMLDOMNODE_THIS(iface);
|
||||
LONG ref = InterlockedIncrement(&This->ref);
|
||||
|
||||
TRACE("(%p)\n", This);
|
||||
TRACE("(%p) ref=%d\n", This, ref);
|
||||
|
||||
return IHTMLDocument2_AddRef(HTMLDOC(This->doc));
|
||||
return ref;
|
||||
}
|
||||
|
||||
static ULONG WINAPI HTMLDOMNode_Release(IHTMLDOMNode *iface)
|
||||
{
|
||||
HTMLDOMNode *This = HTMLDOMNODE_THIS(iface);
|
||||
LONG ref = InterlockedDecrement(&This->ref);
|
||||
|
||||
TRACE("(%p)\n", This);
|
||||
TRACE("(%p) ref=%d\n", This, ref);
|
||||
|
||||
return IHTMLDocument2_Release(HTMLDOC(This->doc));
|
||||
if(!ref) {
|
||||
This->vtbl->destructor(This);
|
||||
mshtml_free(This);
|
||||
}
|
||||
|
||||
return ref;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI HTMLDOMNode_GetTypeInfoCount(IHTMLDOMNode *iface, UINT *pctinfo)
|
||||
@ -352,6 +359,7 @@ static HTMLDOMNode *create_node(HTMLDocument *doc, nsIDOMNode *nsnode)
|
||||
}
|
||||
|
||||
ret->lpHTMLDOMNodeVtbl = &HTMLDOMNodeVtbl;
|
||||
ret->ref = 1;
|
||||
ret->doc = doc;
|
||||
|
||||
nsIDOMNode_AddRef(nsnode);
|
||||
@ -396,7 +404,7 @@ void release_nodes(HTMLDocument *This)
|
||||
|
||||
for(iter = This->nodes; iter; iter = next) {
|
||||
next = iter->next;
|
||||
iter->vtbl->destructor(iter);
|
||||
mshtml_free(iter);
|
||||
iter->doc = NULL;
|
||||
IHTMLDOMNode_Release(HTMLDOMNODE(iter));
|
||||
}
|
||||
}
|
||||
|
@ -270,6 +270,8 @@ struct HTMLDOMNode {
|
||||
const IHTMLDOMNodeVtbl *lpHTMLDOMNodeVtbl;
|
||||
const NodeImplVtbl *vtbl;
|
||||
|
||||
LONG ref;
|
||||
|
||||
nsIDOMNode *nsnode;
|
||||
HTMLDocument *doc;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user