[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:25:43 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit 65d0710c20846bb4e5150b65b3855cc0792d6556
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Sun Jul 21 02:37:35 2002 +0000
- fixed 2999643 -- Leak of NSSet in -[IFStandardPanels _didStartLoadingURL:inController:]
This is another case of the leak I fixed a month ago. I don't know how I managed to
overlook this other code path with the identical bug.
* Panels.subproj/WebStandardPanels.m:
(-[WebStandardPanels _didStopLoadingURL:inController:]): Fix a leak caused
by calling the wrong method. This was calling objectForKey: instead of
removeObjectForKey:.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1608 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 836564c..25e627d 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,17 @@
2002-07-20 Darin Adler <darin at apple.com>
+ - fixed 2999643 -- Leak of NSSet in -[IFStandardPanels _didStartLoadingURL:inController:]
+
+ This is another case of the leak I fixed a month ago. I don't know how I managed to
+ overlook this other code path with the identical bug.
+
+ * Panels.subproj/WebStandardPanels.m:
+ (-[WebStandardPanels _didStopLoadingURL:inController:]): Fix a leak caused
+ by calling the wrong method. This was calling objectForKey: instead of
+ removeObjectForKey:.
+
+2002-07-20 Darin Adler <darin at apple.com>
+
* WebCoreSupport.subproj/WebBridge.m:
(-[WebBridge areToolbarsVisible]):
(-[WebBridge isStatusBarVisible]):
@@ -535,7 +547,7 @@
* WebView.subproj/IFPreferences.mm:
(+[IFPreferences load]): Switch default for "Allow JavaScript to
- open new windows automatically to FALSE.
+ open new windows automatically" to FALSE.
2002-07-15 Darin Adler <darin at apple.com>
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 836564c..25e627d 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,17 @@
2002-07-20 Darin Adler <darin at apple.com>
+ - fixed 2999643 -- Leak of NSSet in -[IFStandardPanels _didStartLoadingURL:inController:]
+
+ This is another case of the leak I fixed a month ago. I don't know how I managed to
+ overlook this other code path with the identical bug.
+
+ * Panels.subproj/WebStandardPanels.m:
+ (-[WebStandardPanels _didStopLoadingURL:inController:]): Fix a leak caused
+ by calling the wrong method. This was calling objectForKey: instead of
+ removeObjectForKey:.
+
+2002-07-20 Darin Adler <darin at apple.com>
+
* WebCoreSupport.subproj/WebBridge.m:
(-[WebBridge areToolbarsVisible]):
(-[WebBridge isStatusBarVisible]):
@@ -535,7 +547,7 @@
* WebView.subproj/IFPreferences.mm:
(+[IFPreferences load]): Switch default for "Allow JavaScript to
- open new windows automatically to FALSE.
+ open new windows automatically" to FALSE.
2002-07-15 Darin Adler <darin at apple.com>
diff --git a/WebKit/Panels.subproj/WebStandardPanels.m b/WebKit/Panels.subproj/WebStandardPanels.m
index 6f20b2d..3d392db 100644
--- a/WebKit/Panels.subproj/WebStandardPanels.m
+++ b/WebKit/Panels.subproj/WebStandardPanels.m
@@ -175,7 +175,7 @@ static void initSharedStandardPanels(void)
[set removeObject:controller];
if ([set count] == 0) {
- [_privatePanels->urlContainers objectForKey:url];
+ [_privatePanels->urlContainers removeObjectForKey:url];
}
}
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list