[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:21:06 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit 6fe97123642f35ea2124059e0bd3430e1573d17f
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Tue Jun 25 04:50:08 2002 +0000
* Panels.subproj/IFStandardPanels.m:
(-[IFStandardPanels didStopLoadingURL:inWindow:]): 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@1425 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index d7813d4..98c7489 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,10 @@
+2002-06-24 Darin Adler <darin at apple.com>
+
+ * Panels.subproj/IFStandardPanels.m:
+ (-[IFStandardPanels didStopLoadingURL:inWindow:]): Fix a leak caused
+ by calling the wrong method. This was calling objectForKey: instead of
+ removeObjectForKey:.
+
2002-06-24 Richard Williamson <rjw at apple.com>
Changed our usage of +[NSFont findFontLike:forString:withRange:inLanguage:]
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index d7813d4..98c7489 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-06-24 Darin Adler <darin at apple.com>
+
+ * Panels.subproj/IFStandardPanels.m:
+ (-[IFStandardPanels didStopLoadingURL:inWindow:]): Fix a leak caused
+ by calling the wrong method. This was calling objectForKey: instead of
+ removeObjectForKey:.
+
2002-06-24 Richard Williamson <rjw at apple.com>
Changed our usage of +[NSFont findFontLike:forString:withRange:inLanguage:]
diff --git a/WebKit/Panels.subproj/IFStandardPanels.m b/WebKit/Panels.subproj/IFStandardPanels.m
index 63a249d..261aec0 100644
--- a/WebKit/Panels.subproj/IFStandardPanels.m
+++ b/WebKit/Panels.subproj/IFStandardPanels.m
@@ -134,7 +134,7 @@ static void initSharedStandardPanels(void)
[set removeObject:window];
if ([set count] == 0) {
- [_privatePanels->urlContainers objectForKey:url];
+ [_privatePanels->urlContainers removeObjectForKey:url];
}
}
diff --git a/WebKit/Panels.subproj/WebStandardPanels.m b/WebKit/Panels.subproj/WebStandardPanels.m
index 63a249d..261aec0 100644
--- a/WebKit/Panels.subproj/WebStandardPanels.m
+++ b/WebKit/Panels.subproj/WebStandardPanels.m
@@ -134,7 +134,7 @@ static void initSharedStandardPanels(void)
[set removeObject:window];
if ([set count] == 0) {
- [_privatePanels->urlContainers objectForKey:url];
+ [_privatePanels->urlContainers removeObjectForKey:url];
}
}
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list