bug 247377: profile migration doesn't work with non-ASCII characters in username on Windows (r=bsmedberg, effectively a=chofmann)

This commit is contained in:
jshin%mailaps.org 2004-07-30 20:45:30 +00:00
Родитель 38dbac7bbf
Коммит 272b0e5427
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -358,7 +358,8 @@ nsProfileMigrator::ImportRegistryProfiles(const nsACString& aAppName)
if (!profileFile)
continue;
rv = profileFile->InitWithNativePath(nsDependentCString(profilePath));
NS_ConvertUTF8toUTF16 widePath(profilePath);
rv = profileFile->InitWithPath(widePath);
if (NS_FAILED(rv)) continue;
nsCOMPtr<nsIToolkitProfile> tprofile;