<rdar://problem/
4526120> -[WebBasePluginPackage finalize] leaks the CFBundle (under GC only)
* Plugins/WebBasePluginPackage.m:
(-[WebBasePluginPackage finalize]):
Release the CFBundle here.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@14068
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-04-25 Tim Omernick <timo@apple.com>
+
+ Reviewed by Eric.
+
+ <rdar://problem/4526120> -[WebBasePluginPackage finalize] leaks the CFBundle (under GC only)
+
+ * Plugins/WebBasePluginPackage.m:
+ (-[WebBasePluginPackage finalize]):
+ Release the CFBundle here.
+
2006-04-25 Tim Omernick <timo@apple.com>
Reviewed by Geoff.
{
ASSERT(!isLoaded);
+ if (cfBundle)
+ CFRelease(cfBundle);
+
[super finalize];
}