Bug 601469 - Updater in 10/02 and 10/03 Windows nightly is broken. r=dolske, a=blockingB7

This commit is contained in:
Robert Strong 2010-10-03 12:47:00 -07:00
Родитель cc0f0fc4ff
Коммит a381640999
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -403,8 +403,10 @@ ApplyUpdate(nsIFile *greDir, nsIFile *updateDir, nsILocalFile *statusFile,
rv = parentDir2->GetNativePath(applyToDir);
}
#elif defined(XP_WIN)
nsAutoString applyToDir;
rv = appDir->GetPath(applyToDir);
nsAutoString applyToDirW;
rv = appDir->GetPath(applyToDirW);
NS_ConvertUTF16toUTF8 applyToDir(applyToDirW);
#else
nsCAutoString applyToDir;
rv = appDir->GetNativePath(applyToDir);