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

sullivan sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:51:21 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 892e85eeea7b0a37cf3293f0baf7e398eb9ab9c8
Author: sullivan <sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 13 01:25:01 2003 +0000

    	- fixed 3369505 -- leaks of NSCFTimer after running through the
    	cvs-base test suite
    
            Reviewed by Richard
    
            * WebView.subproj/WebFrame.m:
            (-[WebFrame stopLoading]):
    	release timer before nil'ing it out
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4812 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 626458d..8b10700 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,14 @@
+2003-08-12  John Sullivan  <sullivan at apple.com>
+
+	- fixed 3369505 -- leaks of NSCFTimer after running through the 
+	cvs-base test suite
+
+        Reviewed by Richard
+
+        * WebView.subproj/WebFrame.m:
+        (-[WebFrame stopLoading]):
+	release timer before nil'ing it out
+
 2003-08-12  Ed Voas  <voas at apple.com>
 
         Reviewed by Richard.
diff --git a/WebKit/WebView.subproj/WebFrame.m b/WebKit/WebView.subproj/WebFrame.m
index b2093fd..23f3617 100644
--- a/WebKit/WebView.subproj/WebFrame.m
+++ b/WebKit/WebView.subproj/WebFrame.m
@@ -144,6 +144,7 @@
     [_private->provisionalDataSource _stopLoading];
     [_private->dataSource _stopLoading];
     [_private->scheduledLayoutTimer invalidate];
+    [_private->scheduledLayoutTimer release];
     _private->scheduledLayoutTimer = nil;
 
     // Release the provisional data source because there's no point in keeping it around since it is unused in this case.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list