Changeset 129392 in webkit


Ignore:
Timestamp:
Sep 24, 2012 11:34:15 AM (12 years ago)
Author:
commit-queue@webkit.org
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 <Xuewen.Wang@torchmobile.com.cn> 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):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r129389 r129392  
     12012-09-24  Sean Wang  <Xuewen.Wang@torchmobile.com.cn>
     2
     3        [BlackBerry] Basic authentication challenge credentials for stored credentials again after restarting browser
     4        https://bugs.webkit.org/show_bug.cgi?id=96362
     5
     6        Reviewed by Rob Buis.
     7
     8        Fix a mistake of the commit 11fdc73c7c74bbd736ed4160248ff59636a01864
     9        Trunk has been changed during reviewing that patch.
     10
     11        No new tests, this is to correct a build error.
     12
     13        * platform/network/blackberry/CredentialBackingStore.cpp:
     14        (WebCore::CredentialBackingStore::getProtectionSpace):
     15
    1162012-09-24  Dan Bernstein  <mitz@apple.com>
    217
  • trunk/Source/WebCore/platform/network/blackberry/CredentialBackingStore.cpp

    r129087 r129392  
    266266    int result = m_getLoginByURLStatement->step();
    267267    String username = m_getLoginByURLStatement->getColumnText(0);
    268     String password = m_usingCertManager ? "" : m_getLoginByURLStatement->getColumnBlobAsString(1);
     268    String password = certMgrWrapper()->isReady() ? "" : m_getLoginByURLStatement->getColumnBlobAsString(1);
    269269    String host = m_getLoginByURLStatement->getColumnText(2);
    270270    int port = m_getLoginByURLStatement->getColumnInt(3);
Note: See TracChangeset for help on using the changeset viewer.