Commit c9c50cd4 authored by Gabriel Ivăncescu's avatar Gabriel Ivăncescu Committed by Alexandre Julliard

mshtml: Return actual status in nsChannel_GetStatus.

parent 740d4ea1
......@@ -599,9 +599,9 @@ static nsresult NSAPI nsChannel_GetStatus(nsIHttpChannel *iface, nsresult *aStat
{
nsChannel *This = impl_from_nsIHttpChannel(iface);
WARN("(%p)->(%p) returning NS_OK\n", This, aStatus);
TRACE("(%p)->(%p) returning %#lx\n", This, aStatus, This->status);
return *aStatus = NS_OK;
return *aStatus = This->status;
}
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