Bug 582174: IsDead() was intended to check for null. r=dwitte

--HG--
extra : rebase_source : 3a85ae01837b303c13c412e26b78b8179cdfff75
This commit is contained in:
Chris Jones 2010-07-27 01:26:41 -05:00
parent 63292100e5
commit b26b25290b

View File

@ -104,7 +104,7 @@ public:
bool IsDead() const
{
nsCOMPtr<nsIObserver> observer = GetObserver();
return !!observer;
return !observer;
}
/**