Bug 270557 : downloads fail silently if the default download path is invalid, e.g. leads to a removed drive, patch by Son Le <son.le0@gmail.com>, r+a=mconnor

This commit is contained in:
gavin%gavinsharp.com 2005-08-05 06:37:10 +00:00
Родитель 9d0d2d27ca
Коммит eaa495635e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -245,7 +245,7 @@ nsUnknownContentTypeDialog.prototype = {
validateLeafName: function (aLocalFile, aLeafName, aFileExt)
{
if (!aLocalFile)
if (!aLocalFile || !aLocalFile.exists())
return null;
if (aLeafName == "")