Fix leak regression from yesterday: derived classes use NS_IMPL_RELEASE_INHERITED, which relies on destructor being virtual. r+sr=bzbarsky a=brendan b=283489

This commit is contained in:
dbaron%dbaron.org 2005-04-06 18:12:57 +00:00
parent 73f1747971
commit 50acbb058e

View File

@ -56,6 +56,7 @@ class NS_COM nsHashPropertyBag : public nsIWritablePropertyBag
{
public:
nsHashPropertyBag() { }
virtual ~nsHashPropertyBag() {}
nsresult Init();