Make moz-icon: work on Windows drives b=236227 r=mscott sr=tor

This commit is contained in:
neil%parkwaycc.co.uk 2006-01-10 12:04:08 +00:00
Родитель 0b8049a9fd
Коммит e133eca20a
1 изменённых файлов: 7 добавлений и 1 удалений

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

@ -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)