[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:24:19 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 441349cafec7e8ff0755e9bae2b3c6e39e741272
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Jul 14 04:33:20 2002 +0000

    WebFoundation:
    
            * AuthenticationManager.subproj/IFAuthenticationManager.m:
            (-[IFAuthenticationManager dealloc]):
    	Fix leak by adding call to [super dealloc].
    
    WebKit:
    
            * Plugins.subproj/IFNullPluginView.mm: (-[IFNullPluginView dealloc]):
            * WebView.subproj/IFImageRepresentation.m: (-[IFImageRepresentation dealloc]):
    	Fix leaks by adding calls to [super dealloc].
    
    WebBrowser:
    
            * Debug/DOMTree.m: (-[DOMTreeDataSource dealloc]):
            * Debug/DebugUtilities.m: (-[DebugUtilities dealloc]):
            * Debug/RenderTree.m: (-[RenderTreeDataSource dealloc]):
            * Debug/ViewTree.m: (-[ViewTreeDataSource dealloc]):
            * ListView.m: (-[ListView dealloc]):
    	Fix leaks by adding calls to [super dealloc].
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1553 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 04fb9e2..6e2907c 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,11 @@
 2002-07-13  Darin Adler  <darin at apple.com>
 
+        * Plugins.subproj/IFNullPluginView.mm: (-[IFNullPluginView dealloc]):
+        * WebView.subproj/IFImageRepresentation.m: (-[IFImageRepresentation dealloc]):
+	Fix leaks by adding calls to [super dealloc].
+
+2002-07-13  Darin Adler  <darin at apple.com>
+
         * Misc.subproj/IFNSEventExtras.h: Removed.
         * Misc.subproj/IFNSEventExtras.m: Removed.
         * WebKit.pbproj/project.pbxproj: Removed IFNSEventExtras.*.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 04fb9e2..6e2907c 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,11 @@
 2002-07-13  Darin Adler  <darin at apple.com>
 
+        * Plugins.subproj/IFNullPluginView.mm: (-[IFNullPluginView dealloc]):
+        * WebView.subproj/IFImageRepresentation.m: (-[IFImageRepresentation dealloc]):
+	Fix leaks by adding calls to [super dealloc].
+
+2002-07-13  Darin Adler  <darin at apple.com>
+
         * Misc.subproj/IFNSEventExtras.h: Removed.
         * Misc.subproj/IFNSEventExtras.m: Removed.
         * WebKit.pbproj/project.pbxproj: Removed IFNSEventExtras.*.
diff --git a/WebKit/Plugins.subproj/IFNullPluginView.mm b/WebKit/Plugins.subproj/IFNullPluginView.mm
index d7d3ad1..df86c8f 100644
--- a/WebKit/Plugins.subproj/IFNullPluginView.mm
+++ b/WebKit/Plugins.subproj/IFNullPluginView.mm
@@ -44,6 +44,7 @@ static NSImage *image = nil;
 {
     [pluginPage release];
     [mimeType release];
+    [super dealloc];
 }
 
 - (void)drawRect:(NSRect)rect {
diff --git a/WebKit/Plugins.subproj/WebNullPluginView.m b/WebKit/Plugins.subproj/WebNullPluginView.m
index d7d3ad1..df86c8f 100644
--- a/WebKit/Plugins.subproj/WebNullPluginView.m
+++ b/WebKit/Plugins.subproj/WebNullPluginView.m
@@ -44,6 +44,7 @@ static NSImage *image = nil;
 {
     [pluginPage release];
     [mimeType release];
+    [super dealloc];
 }
 
 - (void)drawRect:(NSRect)rect {
diff --git a/WebKit/WebView.subproj/IFImageRepresentation.m b/WebKit/WebView.subproj/IFImageRepresentation.m
index d0fc3ee..79fcc8b 100644
--- a/WebKit/WebView.subproj/IFImageRepresentation.m
+++ b/WebKit/WebView.subproj/IFImageRepresentation.m
@@ -23,6 +23,7 @@
 - (void)dealloc
 {
     [image release];
+    [super dealloc];
 }
 
 - (IFImageRenderer *)image
diff --git a/WebKit/WebView.subproj/WebImageRepresentation.m b/WebKit/WebView.subproj/WebImageRepresentation.m
index d0fc3ee..79fcc8b 100644
--- a/WebKit/WebView.subproj/WebImageRepresentation.m
+++ b/WebKit/WebView.subproj/WebImageRepresentation.m
@@ -23,6 +23,7 @@
 - (void)dealloc
 {
     [image release];
+    [super dealloc];
 }
 
 - (IFImageRenderer *)image

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list