mshtml: Move detach_document_node call to HTMLDocumentNode_unlink.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2019-03-28 15:56:36 +01:00 committed by Alexandre Julliard
parent 43ae349c96
commit d9da6e642e

View File

@ -4966,7 +4966,8 @@ static void HTMLDocumentNode_destructor(HTMLDOMNode *iface)
{ {
HTMLDocumentNode *This = impl_from_HTMLDOMNode(iface); HTMLDocumentNode *This = impl_from_HTMLDOMNode(iface);
detach_document_node(This); TRACE("(%p)\n", This);
heap_free(This->event_vector); heap_free(This->event_vector);
ConnectionPointContainer_Destroy(&This->basedoc.cp_container); ConnectionPointContainer_Destroy(&This->basedoc.cp_container);
} }
@ -4994,6 +4995,7 @@ static void HTMLDocumentNode_unlink(HTMLDOMNode *iface)
nsIDOMHTMLDocument *nsdoc = This->nsdoc; nsIDOMHTMLDocument *nsdoc = This->nsdoc;
release_document_mutation(This); release_document_mutation(This);
detach_document_node(This);
This->nsdoc = NULL; This->nsdoc = NULL;
nsIDOMHTMLDocument_Release(nsdoc); nsIDOMHTMLDocument_Release(nsdoc);
This->window = NULL; This->window = NULL;