mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
mshtml: Ignore EndLoad call if document is already detached.
This commit is contained in:
parent
92ff4bb7c2
commit
355b9b6605
@ -338,6 +338,9 @@ static void handle_end_load(HTMLDocumentNode *This)
|
||||
|
||||
TRACE("\n");
|
||||
|
||||
if(!This->basedoc.doc_obj)
|
||||
return;
|
||||
|
||||
if(This != This->basedoc.doc_obj->basedoc.doc_node) {
|
||||
set_ready_state(This->basedoc.window, READYSTATE_INTERACTIVE);
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user