From b862aab22a8b243155313426ca443f80c1d38a98 Mon Sep 17 00:00:00 2001 From: "pinkerton%aol.net" Date: Tue, 17 Feb 2004 00:49:06 +0000 Subject: [PATCH] call [super dealloc] to avoid leaking view hierarchy (bug 234280) --- camino/src/browser/BrowserContentViews.mm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/camino/src/browser/BrowserContentViews.mm b/camino/src/browser/BrowserContentViews.mm index 7572bfaae13..3d3c688c96b 100644 --- a/camino/src/browser/BrowserContentViews.mm +++ b/camino/src/browser/BrowserContentViews.mm @@ -97,6 +97,8 @@ // had to retain it to keep it around outside the view hierarchy. if ([self isBookmarkManagerVisible]) [mBrowserContainerView release]; + + [super dealloc]; } - (void)awakeFromNib