Title: [134971] trunk/Source/WebCore
- Revision
- 134971
- Author
- [email protected]
- Date
- 2012-11-16 10:55:48 -0800 (Fri, 16 Nov 2012)
Log Message
Fix assertion bug of build fix r134961
https://bugs.webkit.org/show_bug.cgi?id=102533
Patch by Byungwoo Lee <[email protected]> on 2012-11-16
Reviewed by Martin Robinson.
Assertion condition should be '!d->m_currentWebChallenge.isNull()'
* platform/network/soup/ResourceHandleSoup.cpp:
(WebCore::ResourceHandle::continueDidReceiveAuthenticationChallenge):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (134970 => 134971)
--- trunk/Source/WebCore/ChangeLog 2012-11-16 18:39:27 UTC (rev 134970)
+++ trunk/Source/WebCore/ChangeLog 2012-11-16 18:55:48 UTC (rev 134971)
@@ -1,3 +1,15 @@
+2012-11-16 Byungwoo Lee <[email protected]>
+
+ Fix assertion bug of build fix r134961
+ https://bugs.webkit.org/show_bug.cgi?id=102533
+
+ Reviewed by Martin Robinson.
+
+ Assertion condition should be '!d->m_currentWebChallenge.isNull()'
+
+ * platform/network/soup/ResourceHandleSoup.cpp:
+ (WebCore::ResourceHandle::continueDidReceiveAuthenticationChallenge):
+
2012-11-16 Tommy Widenflycht <[email protected]>
[chromium] MediaStream API: Add missing WebRTCPeerConnectionHandlerClient::didAddRemoteDataChannel
Modified: trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp (134970 => 134971)
--- trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp 2012-11-16 18:39:27 UTC (rev 134970)
+++ trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp 2012-11-16 18:55:48 UTC (rev 134971)
@@ -936,7 +936,7 @@
void ResourceHandle::continueDidReceiveAuthenticationChallenge(const Credential& credentialFromPersistentStorage)
{
- ASSERT(d->m_currentWebChallenge.isNull());
+ ASSERT(!d->m_currentWebChallenge.isNull());
AuthenticationChallenge& challenge = d->m_currentWebChallenge;
ASSERT(challenge.soupSession());
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes