[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75
ap at apple.com
ap at apple.com
Thu Oct 29 20:42:42 UTC 2009
The following commit has been merged in the webkit-1.1 branch:
commit ecc99bd7a6c879c632520d6afd163d4bdc1c0375
Author: ap at apple.com <ap at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Sat Oct 10 00:38:25 2009 +0000
Unreviewed - fixing an obvious typo in my previous check-in.
https://bugs.webkit.org/show_bug.cgi?id=30260
<rdar://problem/6447115> REGRESSION: Logging out from SAP doesn't work
Fixes existing tests (which I thought I had run the previous time).
* platform/network/CredentialStorage.cpp: (WebCore::originsWithCredentials): Return the
set by reference.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49410 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 5a9b186..826b69c 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2009-10-09 Alexey Proskuryakov <ap at apple.com>
+
+ Unreviewed - fixing an obvious typo in my previous check-in.
+
+ https://bugs.webkit.org/show_bug.cgi?id=30260
+ <rdar://problem/6447115> REGRESSION: Logging out from SAP doesn't work
+
+ Fixes existing tests (which I thought I had run the previous time).
+
+ * platform/network/CredentialStorage.cpp: (WebCore::originsWithCredentials): Return the
+ set by reference.
+
2009-10-09 David Levin <levin at chromium.org>
Reviewed by Eric Seidel.
diff --git a/WebCore/platform/network/CredentialStorage.cpp b/WebCore/platform/network/CredentialStorage.cpp
index f58cff5..ec78372 100644
--- a/WebCore/platform/network/CredentialStorage.cpp
+++ b/WebCore/platform/network/CredentialStorage.cpp
@@ -43,7 +43,7 @@ static ProtectionSpaceToCredentialMap& protectionSpaceToCredentialMap()
return map;
}
-static HashSet<String> originsWithCredentials()
+static HashSet<String>& originsWithCredentials()
{
DEFINE_STATIC_LOCAL(HashSet<String>, set, ());
return set;
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list