Commit 416f504c authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Set default original uri in NewChannelFromURI.

parent a2813f7c
......@@ -1423,7 +1423,9 @@ static nsresult NSAPI nsIOService_NewChannelFromURI(nsIIOService *iface, nsIURI
ret->load_group = NULL;
ret->notif_callback = NULL;
ret->load_flags = 0;
ret->original_uri = NULL;
nsIURI_AddRef(aURI);
ret->original_uri = aURI;
if(channel)
nsIChannel_QueryInterface(channel, &IID_nsIHttpChannel, (void**)&ret->http_channel);
......
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