Fixed memory leak of AREA content object in ProcessAREATag()

This commit is contained in:
troy%netscape.com 1999-01-29 05:37:45 +00:00
Родитель 9901b6f2bb
Коммит 1d68916383
2 изменённых файлов: 2 добавлений и 0 удалений

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

@ -2159,6 +2159,7 @@ HTMLContentSink::ProcessAREATag(const nsIParserNode& aNode)
// Add AREA object to the current map
mCurrentMap->AppendChildTo(area, PR_FALSE);
NS_RELEASE(area);
}
return NS_OK;
}

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

@ -2159,6 +2159,7 @@ HTMLContentSink::ProcessAREATag(const nsIParserNode& aNode)
// Add AREA object to the current map
mCurrentMap->AppendChildTo(area, PR_FALSE);
NS_RELEASE(area);
}
return NS_OK;
}