Title: [129392] trunk/Source/WebCore
Revision
129392
Author
[email protected]
Date
2012-09-24 11:34:15 -0700 (Mon, 24 Sep 2012)

Log Message

[BlackBerry] Basic authentication challenge credentials for stored credentials again after restarting browser
https://bugs.webkit.org/show_bug.cgi?id=96362

Patch by Sean Wang <[email protected]> on 2012-09-24
Reviewed by Rob Buis.

Fix a mistake of the commit 11fdc73c7c74bbd736ed4160248ff59636a01864
Trunk has been changed during reviewing that patch.

No new tests, this is to correct a build error.

* platform/network/blackberry/CredentialBackingStore.cpp:
(WebCore::CredentialBackingStore::getProtectionSpace):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (129391 => 129392)


--- trunk/Source/WebCore/ChangeLog	2012-09-24 18:32:04 UTC (rev 129391)
+++ trunk/Source/WebCore/ChangeLog	2012-09-24 18:34:15 UTC (rev 129392)
@@ -1,3 +1,18 @@
+2012-09-24  Sean Wang  <[email protected]>
+
+        [BlackBerry] Basic authentication challenge credentials for stored credentials again after restarting browser
+        https://bugs.webkit.org/show_bug.cgi?id=96362
+
+        Reviewed by Rob Buis.
+
+        Fix a mistake of the commit 11fdc73c7c74bbd736ed4160248ff59636a01864
+        Trunk has been changed during reviewing that patch.
+
+        No new tests, this is to correct a build error.
+
+        * platform/network/blackberry/CredentialBackingStore.cpp:
+        (WebCore::CredentialBackingStore::getProtectionSpace):
+
 2012-09-24  Dan Bernstein  <[email protected]>
 
         Reverted r129176, the fix for <http://webkit.org/b/97269>, because it introduced a

Modified: trunk/Source/WebCore/platform/network/blackberry/CredentialBackingStore.cpp (129391 => 129392)


--- trunk/Source/WebCore/platform/network/blackberry/CredentialBackingStore.cpp	2012-09-24 18:32:04 UTC (rev 129391)
+++ trunk/Source/WebCore/platform/network/blackberry/CredentialBackingStore.cpp	2012-09-24 18:34:15 UTC (rev 129392)
@@ -265,7 +265,7 @@
 
     int result = m_getLoginByURLStatement->step();
     String username = m_getLoginByURLStatement->getColumnText(0);
-    String password = m_usingCertManager ? "" : m_getLoginByURLStatement->getColumnBlobAsString(1);
+    String password = certMgrWrapper()->isReady() ? "" : m_getLoginByURLStatement->getColumnBlobAsString(1);
     String host = m_getLoginByURLStatement->getColumnText(2);
     int port = m_getLoginByURLStatement->getColumnInt(3);
     int serviceType = m_getLoginByURLStatement->getColumnInt(4);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to