mshtml: Return NS_OK in GetStatus if channel is NULL.

This commit is contained in:
Jacek Caban 2006-06-25 14:13:48 +02:00 committed by Alexandre Julliard
parent 78c287f12a
commit 2218bfcc8e
1 changed files with 2 additions and 2 deletions

View File

@ -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)