From 2218bfcc8e4966f22ad5c1313a48e958421f6028 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Sun, 25 Jun 2006 14:13:48 +0200 Subject: [PATCH] mshtml: Return NS_OK in GetStatus if channel is NULL. --- dlls/mshtml/nsio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/nsio.c b/dlls/mshtml/nsio.c index c465154914f..3c12f4c2fb4 100644 --- a/dlls/mshtml/nsio.c +++ b/dlls/mshtml/nsio.c @@ -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)