Title: [222134] trunk/Source/WebKit
- Revision
- 222134
- Author
- [email protected]
- Date
- 2017-09-17 07:37:31 -0700 (Sun, 17 Sep 2017)
Log Message
[WPE][GTK] Merge ProcessLauncher[WPE,GTK]
https://bugs.webkit.org/show_bug.cgi?id=177041
Unreviewed fixup, I broke the size of the argv buffer when experimenting with how to respond
to review comments. Not sure why this didn't blow up everything during testing.
* UIProcess/Launcher/glib/ProcessLauncherGLib.cpp:
(WebKit::ProcessLauncher::launchProcess):
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (222133 => 222134)
--- trunk/Source/WebKit/ChangeLog 2017-09-17 14:34:02 UTC (rev 222133)
+++ trunk/Source/WebKit/ChangeLog 2017-09-17 14:37:31 UTC (rev 222134)
@@ -3,6 +3,17 @@
[WPE][GTK] Merge ProcessLauncher[WPE,GTK]
https://bugs.webkit.org/show_bug.cgi?id=177041
+ Unreviewed fixup, I broke the size of the argv buffer when experimenting with how to respond
+ to review comments. Not sure why this didn't blow up everything during testing.
+
+ * UIProcess/Launcher/glib/ProcessLauncherGLib.cpp:
+ (WebKit::ProcessLauncher::launchProcess):
+
+2017-09-17 Michael Catanzaro <[email protected]>
+
+ [WPE][GTK] Merge ProcessLauncher[WPE,GTK]
+ https://bugs.webkit.org/show_bug.cgi?id=177041
+
Reviewed by Carlos Garcia Campos.
* PlatformGTK.cmake:
Modified: trunk/Source/WebKit/UIProcess/Launcher/glib/ProcessLauncherGLib.cpp (222133 => 222134)
--- trunk/Source/WebKit/UIProcess/Launcher/glib/ProcessLauncherGLib.cpp 2017-09-17 14:34:02 UTC (rev 222133)
+++ trunk/Source/WebKit/UIProcess/Launcher/glib/ProcessLauncherGLib.cpp 2017-09-17 14:37:31 UTC (rev 222134)
@@ -95,7 +95,7 @@
realExecutablePath = fileSystemRepresentation(executablePath);
GUniquePtr<gchar> webkitSocket(g_strdup_printf("%d", socketPair.client));
- unsigned nargs = 3; // size of the argv array for g_spawn_async()
+ unsigned nargs = 4; // size of the argv array for g_spawn_async()
#if PLATFORM(WPE)
GUniquePtr<gchar> wpeSocket;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes