Title: [231412] releases/WebKitGTK/webkit-2.20/Source/WebCore
- Revision
- 231412
- Author
- [email protected]
- Date
- 2018-05-07 00:54:29 -0700 (Mon, 07 May 2018)
Log Message
Merge r230706 - [GTK] Build fix after r230529 (WaylandCompositorDisplay leaks its wl_display)
https://bugs.webkit.org/show_bug.cgi?id=184406
Rubber-stamped by Michael Catanzaro.
Fix build with clang 3.8
No new tests, it is a build fix.
* platform/graphics/wayland/PlatformDisplayWayland.cpp:
(WebCore::PlatformDisplayWayland::create):
Modified Paths
Diff
Modified: releases/WebKitGTK/webkit-2.20/Source/WebCore/ChangeLog (231411 => 231412)
--- releases/WebKitGTK/webkit-2.20/Source/WebCore/ChangeLog 2018-05-07 07:54:25 UTC (rev 231411)
+++ releases/WebKitGTK/webkit-2.20/Source/WebCore/ChangeLog 2018-05-07 07:54:29 UTC (rev 231412)
@@ -1,3 +1,17 @@
+2018-04-17 Carlos Alberto Lopez Perez <[email protected]>
+
+ [GTK] Build fix after r230529 (WaylandCompositorDisplay leaks its wl_display)
+ https://bugs.webkit.org/show_bug.cgi?id=184406
+
+ Rubber-stamped by Michael Catanzaro.
+
+ Fix build with clang 3.8
+
+ No new tests, it is a build fix.
+
+ * platform/graphics/wayland/PlatformDisplayWayland.cpp:
+ (WebCore::PlatformDisplayWayland::create):
+
2018-04-11 Michael Catanzaro <[email protected]>
[GTK] WaylandCompositorDisplay leaks its wl_display
Modified: releases/WebKitGTK/webkit-2.20/Source/WebCore/platform/graphics/wayland/PlatformDisplayWayland.cpp (231411 => 231412)
--- releases/WebKitGTK/webkit-2.20/Source/WebCore/platform/graphics/wayland/PlatformDisplayWayland.cpp 2018-05-07 07:54:25 UTC (rev 231411)
+++ releases/WebKitGTK/webkit-2.20/Source/WebCore/platform/graphics/wayland/PlatformDisplayWayland.cpp 2018-05-07 07:54:29 UTC (rev 231412)
@@ -58,7 +58,7 @@
auto platformDisplay = std::unique_ptr<PlatformDisplayWayland>(new PlatformDisplayWayland(display, NativeDisplayOwned::Yes));
platformDisplay->initialize();
- return platformDisplay;
+ return WTFMove(platformDisplay);
}
std::unique_ptr<PlatformDisplay> PlatformDisplayWayland::create(struct wl_display* display)
@@ -65,7 +65,7 @@
{
auto platformDisplay = std::unique_ptr<PlatformDisplayWayland>(new PlatformDisplayWayland(display, NativeDisplayOwned::No));
platformDisplay->initialize();
- return platformDisplay;
+ return WTFMove(platformDisplay);
}
PlatformDisplayWayland::PlatformDisplayWayland(struct wl_display* display, NativeDisplayOwned displayOwned)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes