Jacek Caban : mshtml: Pass processed URI to NewURI.

Alexandre Julliard julliard at winehq.org
Fri Jul 30 10:24:17 CDT 2010


Module: wine
Branch: master
Commit: a0af1dc4cf23baf1270a144b51bc5b1b7cae7aa3
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a0af1dc4cf23baf1270a144b51bc5b1b7cae7aa3

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Fri Jul 30 15:37:26 2010 +0200

mshtml: Pass processed URI to NewURI.

---

 dlls/mshtml/nsio.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/mshtml/nsio.c b/dlls/mshtml/nsio.c
index d9e822d..9129a55 100644
--- a/dlls/mshtml/nsio.c
+++ b/dlls/mshtml/nsio.c
@@ -2488,7 +2488,7 @@ static nsresult NSAPI nsIOService_NewURI(nsIIOService *iface, const nsACString *
     }
 
     nsACString_InitDepend(&spec_str, spec);
-    nsres = nsIIOService_NewURI(nsio, aSpec, aOriginCharset, aBaseURI, &uri);
+    nsres = nsIIOService_NewURI(nsio, &spec_str, aOriginCharset, aBaseURI, &uri);
     nsACString_Finish(&spec_str);
     if(NS_FAILED(nsres))
         TRACE("NewURI failed: %08x\n", nsres);




More information about the wine-cvs mailing list