mshtml: Use proper macro to release nstext.

This commit is contained in:
Jacek Caban 2012-06-28 11:20:14 +02:00 committed by Alexandre Julliard
parent b6cfd58170
commit 66ee1fc98d
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ static HRESULT WINAPI HTMLDocument3_createTextNode(IHTMLDocument3 *iface, BSTR t
}
hres = HTMLDOMTextNode_Create(This->doc_node, (nsIDOMNode*)nstext, &node);
nsIDOMElement_Release(nstext);
nsIDOMText_Release(nstext);
if(FAILED(hres))
return hres;