Commit 2218bfcc authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Return NS_OK in GetStatus if channel is NULL.

parent 78c287f1
......@@ -255,8 +255,8 @@ static nsresult NSAPI nsChannel_GetStatus(nsIHttpChannel *iface, nsresult *aStat
if(This->channel)
return nsIChannel_GetStatus(This->channel, aStatus);
FIXME("default action not implemented\n");
return NS_ERROR_NOT_IMPLEMENTED;
TRACE("returning NS_OK\n");
return *aStatus = NS_OK;
}
static nsresult NSAPI nsChannel_Cancel(nsIHttpChannel *iface, nsresult aStatus)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment