Title: [101926] trunk/Tools
Revision
101926
Author
[email protected]
Date
2011-12-03 05:55:07 -0800 (Sat, 03 Dec 2011)

Log Message

Unreviewed, GTK build fix after r101922.

* DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
(LayoutTestController::pathToLocalResource): Added sentinel in
g_build_filename call.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (101925 => 101926)


--- trunk/Tools/ChangeLog	2011-12-03 13:02:58 UTC (rev 101925)
+++ trunk/Tools/ChangeLog	2011-12-03 13:55:07 UTC (rev 101926)
@@ -1,5 +1,13 @@
 2011-12-03  Philippe Normand  <[email protected]>
 
+        Unreviewed, GTK build fix after r101922.
+
+        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
+        (LayoutTestController::pathToLocalResource): Added sentinel in
+        g_build_filename call.
+
+2011-12-03  Philippe Normand  <[email protected]>
+
         GTK API tests build fix. Run the tests inside jhbuild.
 
         Rubber-stamped by Gustavo Noronha Silva.

Modified: trunk/Tools/DumpRenderTree/gtk/LayoutTestControllerGtk.cpp (101925 => 101926)


--- trunk/Tools/DumpRenderTree/gtk/LayoutTestControllerGtk.cpp	2011-12-03 13:02:58 UTC (rev 101925)
+++ trunk/Tools/DumpRenderTree/gtk/LayoutTestControllerGtk.cpp	2011-12-03 13:55:07 UTC (rev 101926)
@@ -206,7 +206,7 @@
         return url;
 
     const char* layoutTestsSuffix = urlCString.get() + strlen("file:///tmp/");
-    GOwnPtr<char> testPath(g_build_filename(getTopLevelPath().data(), layoutTestsSuffix));
+    GOwnPtr<char> testPath(g_build_filename(getTopLevelPath().data(), layoutTestsSuffix, NULL));
     return JSStringCreateWithUTF8CString(testPath.get());
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to