Changeset 130789 in webkit
- Timestamp:
- Oct 9, 2012, 12:16:22 PM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r130783 r130789 1 2012-10-08 Martin Robinson <mrobinson@igalia.com> 2 3 Fix the order of the statements in my previous build fix. 4 5 Reviewed by Gustavo Noronha Silva. 6 7 My previous build build fix for ResourceHandleSoup ordered the assignment 8 of the local ResourceHandleInternal incorrectly. Instead of being before 9 both assertions, it should be interspersed among them. 10 11 * platform/network/soup/ResourceHandleSoup.cpp: 12 (WebCore::createSoupMessageForHandleAndRequest): 13 1 14 2012-10-09 Beth Dakin <bdakin@apple.com> 2 15 -
trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp
r130704 r130789 687 687 static bool createSoupMessageForHandleAndRequest(ResourceHandle* handle, const ResourceRequest& request) 688 688 { 689 ResourceHandleInternal* d = handle->getInternal();690 689 ASSERT(handle); 690 691 ResourceHandleInternal* d = handle->getInternal(); 691 692 ASSERT(d->m_soupRequest); 692 693
Note:
See TracChangeset
for help on using the changeset viewer.