Bug 261269 toolkit should treat URIs as UTF-8

Relanding nsDownloadManager.cpp of patch following landing of aviary branch
This commit is contained in:
bugzilla%arlen.demon.co.uk 2004-12-02 00:22:51 +00:00
parent f88a68b058
commit 2c4c901bcc

View File

@ -1647,8 +1647,8 @@ nsDownloadsDataSource::GetTarget(nsIRDFResource* aSource, nsIRDFResource* aPrope
fph->GetURLSpecFromFile(lf, fileURL);
nsAutoString iconURL(NS_LITERAL_STRING("moz-icon://"));
nsAutoString pathTemp; pathTemp.AssignWithConversion(fileURL);
iconURL += pathTemp + NS_LITERAL_STRING("?size=32");
AppendUTF8toUTF16(fileURL, iconURL);
iconURL.AppendLiteral("?size=32");
nsCOMPtr<nsIRDFResource> result;
gRDFService->GetUnicodeResource(iconURL, getter_AddRefs(result));