mshtml: Pass processed URI to NewURI.

This commit is contained in:
Jacek Caban 2010-07-30 15:37:26 +02:00 committed by Alexandre Julliard
parent ce8c450d83
commit a0af1dc4cf
1 changed files with 1 additions and 1 deletions

View File

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