зеркало из https://github.com/mozilla/gecko-dev.git
[OS/2] Bug 356287: replace possible forward slashes in q:\tmp with backward slashes, r/sr=mkaply
This commit is contained in:
Родитель
875af5f862
Коммит
2140e9ac7c
|
@ -332,9 +332,11 @@ GetSpecialSystemDirectory(SystemDirectories aSystemSystemDirectory,
|
|||
return NS_ERROR_UNEXPECTED;
|
||||
}
|
||||
}
|
||||
return NS_NewNativeLocalFile(nsDependentCString(tPath),
|
||||
PR_TRUE,
|
||||
aFile);
|
||||
nsCString tString = nsDependentCString(tPath);
|
||||
if (tString.Find("/", PR_FALSE, 0, -1)) {
|
||||
tString.ReplaceChar('/','\\');
|
||||
}
|
||||
return NS_NewNativeLocalFile(tString, PR_TRUE, aFile);
|
||||
}
|
||||
#elif defined(XP_MACOSX)
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче