mirror of
https://github.com/reactos/wine.git
synced 2025-02-03 18:53:17 +00:00
mshtml: Correctly handle NULL req in get_nscontainer_from_load_group.
This commit is contained in:
parent
2f9b7741ca
commit
732682b08c
@ -656,6 +656,9 @@ static NSContainer *get_nscontainer_from_load_group(nsChannel *This)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if(!req)
|
||||
return NULL;
|
||||
|
||||
nsres = nsIRequest_QueryInterface(req, &IID_nsIChannel, (void**)&channel);
|
||||
nsIRequest_Release(req);
|
||||
if(NS_FAILED(nsres)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user