зеркало из https://github.com/mozilla/pjs.git
Make moz-icon: work on Windows drives b=236227 r=mscott sr=tor
This commit is contained in:
Родитель
0b8049a9fd
Коммит
e133eca20a
|
@ -290,7 +290,13 @@ nsresult nsIconChannel::MakeInputStream(nsIInputStream** _retval, PRBool nonBloc
|
|||
if (localFile)
|
||||
{
|
||||
localFile->GetNativePath(filePath);
|
||||
localFile->Exists(&fileExists);
|
||||
if (filePath.Last() == ':')
|
||||
filePath.Append('\\');
|
||||
else {
|
||||
localFile->Exists(&fileExists);
|
||||
if (!fileExists)
|
||||
localFile->GetNativeLeafName(filePath);
|
||||
}
|
||||
}
|
||||
|
||||
if (!fileExists)
|
||||
|
|
Загрузка…
Ссылка в новой задаче