Bug 236003 null check missing in nsBookmarksService (seamonkey version of bug 235129)

r=timeless sr=dbaron a=shaver
This commit is contained in:
cst%andrew.cmu.edu 2005-06-02 00:37:06 +00:00
Родитель 368f56b1fa
Коммит a54fdd5651
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -4763,7 +4763,7 @@ nsBookmarksService::exportBookmarks(nsISupportsArray *aArguments)
NS_ENSURE_TRUE(pathUni, NS_ERROR_NULL_POINTER);
// determine file type to export; default to HTML unless told otherwise
const PRUnichar* format = nsnull;
const PRUnichar* format = EmptyString().get();
rv = getArgumentN(aArguments, kRDF_type, 0, getter_AddRefs(node));
if (NS_SUCCEEDED(rv))
{