Changeset 130789 in webkit


Ignore:
Timestamp:
Oct 9, 2012, 12:16:22 PM (13 years ago)
Author:
Martin Robinson
Message:

Fix the order of the statements in my previous build fix.

Reviewed by Gustavo Noronha Silva.

My previous build build fix for ResourceHandleSoup ordered the assignment
of the local ResourceHandleInternal incorrectly. Instead of being before
both assertions, it should be interspersed among them.

  • platform/network/soup/ResourceHandleSoup.cpp:

(WebCore::createSoupMessageForHandleAndRequest):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r130783 r130789  
     12012-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
    1142012-10-09  Beth Dakin  <bdakin@apple.com>
    215
  • trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp

    r130704 r130789  
    687687static bool createSoupMessageForHandleAndRequest(ResourceHandle* handle, const ResourceRequest& request)
    688688{
    689     ResourceHandleInternal* d = handle->getInternal();
    690689    ASSERT(handle);
     690
     691    ResourceHandleInternal* d = handle->getInternal();
    691692    ASSERT(d->m_soupRequest);
    692693
Note: See TracChangeset for help on using the changeset viewer.