[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:29:57 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit f24f8e5106573e5d83c0ce1a5aee020bcc5c4ab7
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Mar 17 18:20:06 2003 +0000

            Reviewed by Trey and Maciej.
    
    	- fixed 3199154 -- REGRESSION: world leaks on any page load test
    
            * WebView.subproj/WebController.m: (-[WebController initWithView:frameName:groupName:]):
            Call through to initWithFrame, the designated initializer, not init. Calling [super init] results
            in calling our initWithFrame method, resulting in two calls to the _commonInitialization method.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3847 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 9e28c12..5eacaae 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2003-03-17  Darin Adler  <darin at apple.com>
+
+        Reviewed by Trey and Maciej.
+
+	- fixed 3199154 -- REGRESSION: world leaks on any page load test
+
+        * WebView.subproj/WebController.m: (-[WebController initWithView:frameName:groupName:]):
+        Call through to initWithFrame, the designated initializer, not init. Calling [super init] results
+        in calling our initWithFrame method, resulting in two calls to the _commonInitialization method.
+
 2003-03-17  Maciej Stachowiak  <mjs at apple.com>
 
         Reviewed by Trey.
diff --git a/WebKit/WebView.subproj/WebController.m b/WebKit/WebView.subproj/WebController.m
index cfb5475..b92f6e0 100644
--- a/WebKit/WebView.subproj/WebController.m
+++ b/WebKit/WebView.subproj/WebController.m
@@ -129,7 +129,7 @@ NSString *WebElementLinkTitleKey = 		@"WebElementLinkTitle";
 
 - initWithView: (WebFrameView *)view frameName: (NSString *)frameName groupName: (NSString *)groupName;
 {
-    [super init];
+    [super initWithFrame: NSZeroRect];
     [self _commonInitialization: view frameName:frameName groupName:groupName];
     return self;
 }
diff --git a/WebKit/WebView.subproj/WebView.m b/WebKit/WebView.subproj/WebView.m
index cfb5475..b92f6e0 100644
--- a/WebKit/WebView.subproj/WebView.m
+++ b/WebKit/WebView.subproj/WebView.m
@@ -129,7 +129,7 @@ NSString *WebElementLinkTitleKey = 		@"WebElementLinkTitle";
 
 - initWithView: (WebFrameView *)view frameName: (NSString *)frameName groupName: (NSString *)groupName;
 {
-    [super init];
+    [super initWithFrame: NSZeroRect];
     [self _commonInitialization: view frameName:frameName groupName:groupName];
     return self;
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list