fixing memory leak. my bad what was i thinking. forgot to delete the new nsDOMSelection instantiations inside nsRangeList::nsRangeList

This commit is contained in:
mjudge%netscape.com 1999-09-10 19:25:12 +00:00
Родитель 610e07e279
Коммит 2cdaacd69a
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -507,6 +507,11 @@ nsRangeList::~nsRangeList()
NS_IF_RELEASE(sCellAtom);
NS_IF_RELEASE(sTbodyAtom);
}
PRInt32 i;
for (i = 0;i<NUM_SELECTIONTYPES;i++){
if (mDomSelections[i])
delete mDomSelections[i];
}
sInstanceCount--;
}