[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
mjs
mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:57:44 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit c201b9b402510b75d7b2939907b6c3aa06fd8a79
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Thu Nov 7 15:47:19 2002 +0000
- fixed 3094778 - REGRESSION: Assert on logout from schwab.com
(probably fixed it anyway - I'm flying blind on this one)
* WebCoreSupport.subproj/WebBridge.m:
(-[WebBridge createWindowWithURL:frameName:]): Use a nil request
if the URL was nil, instead of making a request that contains a
nil URL.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2586 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 6c3f26f..93e2842 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,16 @@
2002-11-07 Maciej Stachowiak <mjs at apple.com>
+ - fixed 3094778 - REGRESSION: Assert on logout from schwab.com
+
+ (probably fixed it anyway - I'm flying blind on this one)
+
+ * WebCoreSupport.subproj/WebBridge.m:
+ (-[WebBridge createWindowWithURL:frameName:]): Use a nil request
+ if the URL was nil, instead of making a request that contains a
+ nil URL.
+
+2002-11-07 Maciej Stachowiak <mjs at apple.com>
+
Changed things so that creating a window takes a request rather
than a URL and referrer.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 6c3f26f..93e2842 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,16 @@
2002-11-07 Maciej Stachowiak <mjs at apple.com>
+ - fixed 3094778 - REGRESSION: Assert on logout from schwab.com
+
+ (probably fixed it anyway - I'm flying blind on this one)
+
+ * WebCoreSupport.subproj/WebBridge.m:
+ (-[WebBridge createWindowWithURL:frameName:]): Use a nil request
+ if the URL was nil, instead of making a request that contains a
+ nil URL.
+
+2002-11-07 Maciej Stachowiak <mjs at apple.com>
+
Changed things so that creating a window takes a request rather
than a URL and referrer.
diff --git a/WebKit/WebCoreSupport.subproj/WebBridge.m b/WebKit/WebCoreSupport.subproj/WebBridge.m
index 274337c..ca937d4 100644
--- a/WebKit/WebCoreSupport.subproj/WebBridge.m
+++ b/WebKit/WebCoreSupport.subproj/WebBridge.m
@@ -99,7 +99,8 @@
{
ASSERT(frame != nil);
- WebController *newController = [[[frame controller] windowOperationsDelegate] createWindowWithRequest:[WebResourceRequest requestWithURL:URL]];
+ WebResourceRequest *request = URL ? [WebResourceRequest requestWithURL:URL] : nil;
+ WebController *newController = [[[frame controller] windowOperationsDelegate] createWindowWithRequest:request];
[newController _setTopLevelFrameName:name];
return [[newController mainFrame] _bridge];
}
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list