Title: [130704] trunk/Source/WebCore
Revision
130704
Author
mrobin...@webkit.org
Date
2012-10-08 17:02:53 -0700 (Mon, 08 Oct 2012)

Log Message

Try to fix the debug build after r130699

Move the assignment of the ResourceHandleInternal local to before
the include statement where it is used.

* platform/network/soup/ResourceHandleSoup.cpp:
(WebCore::createSoupMessageForHandleAndRequest):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (130703 => 130704)


--- trunk/Source/WebCore/ChangeLog	2012-10-08 23:33:55 UTC (rev 130703)
+++ trunk/Source/WebCore/ChangeLog	2012-10-09 00:02:53 UTC (rev 130704)
@@ -1,3 +1,13 @@
+2012-10-08  Martin Robinson  <mrobin...@igalia.com>
+
+        Try to fix the debug build after r130699
+
+        Move the assignment of the ResourceHandleInternal local to before
+        the include statement where it is used.
+
+        * platform/network/soup/ResourceHandleSoup.cpp:
+        (WebCore::createSoupMessageForHandleAndRequest):
+
 2012-10-08  Nate Chapin  <jap...@chromium.org>
 
         Post-r130226 Cleanup: Comment a complicated if statement and make it a helper.

Modified: trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp (130703 => 130704)


--- trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp	2012-10-08 23:33:55 UTC (rev 130703)
+++ trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp	2012-10-09 00:02:53 UTC (rev 130704)
@@ -686,10 +686,10 @@
 
 static bool createSoupMessageForHandleAndRequest(ResourceHandle* handle, const ResourceRequest& request)
 {
+    ResourceHandleInternal* d = handle->getInternal();
     ASSERT(handle);
     ASSERT(d->m_soupRequest);
 
-    ResourceHandleInternal* d = handle->getInternal();
     d->m_soupMessage = adoptGRef(soup_request_http_get_message(SOUP_REQUEST_HTTP(d->m_soupRequest.get())));
     if (!d->m_soupMessage)
         return false;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to