This commit is contained in:
danm-moz%comcast.net 2004-01-03 02:41:24 +00:00
Родитель f2cc39a073
Коммит 474f7d6ee0
1 изменённых файлов: 6 добавлений и 3 удалений

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

@ -67,8 +67,11 @@ NS_IMETHODIMP
nsTridentProfileMigrator::MigrateTridentProfile(PRUint32 aItems)
{
nsTridentPreferences *pref = MakeTridentPreferences();
if (pref)
return pref->MigrateTridentPreferences(aItems);
return NS_ERROR_OUT_OF_MEMORY;
if (!pref)
return NS_ERROR_OUT_OF_MEMORY;
nsresult rv = pref->MigrateTridentPreferences(aItems);
delete pref;
return rv;
}