(215094) - fix leak in CopySmartKeywords - free the INI parser when we're done with it.

This commit is contained in:
ben%bengoodger.com 2004-02-29 02:20:17 +00:00
Родитель 0b43563ce1
Коммит 4bfaea652e
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -1082,6 +1082,11 @@ nsOperaProfileMigrator::CopySmartKeywords(nsIBookmarksService* aBMS,
getter_AddRefs(itemRes));
}
while (1);
if (parser) {
delete parser;
parser = nsnull;
}
return rv;
}