Changeset 66005 in webkit


Ignore:
Timestamp:
Aug 25, 2010 4:36:54 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-08-25 Yongjun Zhang <yongjun_zhang@apple.com>

Reviewed by Alexey Proskuryakov.

https://bugs.webkit.org/show_bug.cgi?id=44461
Assertion failure at WebCore/platform/network/CredentialStorage.cpp:85.

Remove the assertion at CredentialStorage.cpp:85 since it is legal to have
multiple forward slashes after the path component.

No test needed.

  • platform/network/CredentialStorage.cpp: (WebCore::protectionSpaceMapKeyFromURL):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r66002 r66005  
     12010-08-25  Yongjun Zhang  <yongjun_zhang@apple.com>
     2
     3        Reviewed by Alexey Proskuryakov.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=44461
     6        Assertion failure at WebCore/platform/network/CredentialStorage.cpp:85.
     7
     8        Remove the assertion at CredentialStorage.cpp:85 since it is legal to have
     9        multiple forward slashes after the path component.
     10
     11        No test needed.
     12
     13        * platform/network/CredentialStorage.cpp:
     14        (WebCore::protectionSpaceMapKeyFromURL):
     15
    1162010-08-25  Pavel Feldman  <pfeldman@chromium.org>
    217
  • trunk/WebCore/platform/network/CredentialStorage.cpp

    r65468 r66005  
    8080        directoryURL = directoryURL.substring(0, (index != directoryURLPathStart) ? index : directoryURLPathStart + 1);
    8181    }
    82     ASSERT(directoryURL.length() == directoryURLPathStart + 1 || directoryURL[directoryURL.length() - 1] != '/');
    8382
    8483    return directoryURL;
Note: See TracChangeset for help on using the changeset viewer.