Don't leak the hash table used for the attribute map (#32196). Patch from shaver, r=beard

This commit is contained in:
jst%netscape.com 2000-03-25 00:54:30 +00:00
Родитель 20b914620d
Коммит 7b2d17ca96
2 изменённых файлов: 2 добавлений и 0 удалений

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

@ -81,6 +81,7 @@ nsDOMAttributeMap::~nsDOMAttributeMap()
{
if (nsnull != mAttributes) {
PL_HashTableEnumerateEntries(mAttributes, RemoveAttributes, nsnull);
PL_HashTableDestroy(mAttributes);
}
}

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

@ -81,6 +81,7 @@ nsDOMAttributeMap::~nsDOMAttributeMap()
{
if (nsnull != mAttributes) {
PL_HashTableEnumerateEntries(mAttributes, RemoveAttributes, nsnull);
PL_HashTableDestroy(mAttributes);
}
}