[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 07:10:40 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit cd7936647b95fa39a89b846a47413d6cf2f98ddc
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Dec 3 21:36:37 2002 +0000

    	- fixed 3114796 -- WORLD LEAKS: 1 WebFrame leaked on trivial source file with <html> tag only
    	(probably fixed a ton of other bugs too, since this always leaks)
    
    	Reviewed by Chris.
    
            * WebView.subproj/WebHTMLViewPrivate.m: (-[WebHTMLView _elementAtPoint:]):
    	Added a missing autorelease.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2908 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 34f7b5d..447a150 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,15 @@
 2002-12-03  Darin Adler  <darin at apple.com>
 
+	- fixed 3114796 -- WORLD LEAKS: 1 WebFrame leaked on trivial source file with <html> tag only
+	(probably fixed a ton of other bugs too, since this always leaks)
+
+	Reviewed by Chris.
+
+        * WebView.subproj/WebHTMLViewPrivate.m: (-[WebHTMLView _elementAtPoint:]):
+	Added a missing autorelease.
+
+2002-12-03  Darin Adler  <darin at apple.com>
+
 	Reviewed by Maciej.
 
         * WebView.subproj/WebView.m: Fixed a pair of strings that conflict.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 34f7b5d..447a150 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,15 @@
 2002-12-03  Darin Adler  <darin at apple.com>
 
+	- fixed 3114796 -- WORLD LEAKS: 1 WebFrame leaked on trivial source file with <html> tag only
+	(probably fixed a ton of other bugs too, since this always leaks)
+
+	Reviewed by Chris.
+
+        * WebView.subproj/WebHTMLViewPrivate.m: (-[WebHTMLView _elementAtPoint:]):
+	Added a missing autorelease.
+
+2002-12-03  Darin Adler  <darin at apple.com>
+
 	Reviewed by Maciej.
 
         * WebView.subproj/WebView.m: Fixed a pair of strings that conflict.
diff --git a/WebKit/WebView.subproj/WebHTMLViewPrivate.m b/WebKit/WebView.subproj/WebHTMLViewPrivate.m
index cb9b2c2..e9809fb 100644
--- a/WebKit/WebView.subproj/WebHTMLViewPrivate.m
+++ b/WebKit/WebView.subproj/WebHTMLViewPrivate.m
@@ -178,7 +178,7 @@
 
     [elementInfo setObject:webFrame forKey:WebElementFrameKey];
     
-    return elementInfo;
+    return [elementInfo autorelease];
 }
 
 - (void)_setAsideSubviews

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list