Title: [243590] releases/WebKitGTK/webkit-2.24/Source/WebKit
Revision
243590
Author
ape...@igalia.com
Date
2019-03-27 16:48:07 -0700 (Wed, 27 Mar 2019)

Log Message

Merged r243492 - [WPE][Qt] Uninitialized racy ViewBackend
https://bugs.webkit.org/show_bug.cgi?id=196247

Patch by Philippe Normand <pnorm...@igalia.com> on 2019-03-26
Reviewed by Carlos Garcia Campos.

* UIProcess/API/wpe/qt/WPEQtView.h: Initialize the backend pointer to nullptr.

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.24/Source/WebKit/ChangeLog (243589 => 243590)


--- releases/WebKitGTK/webkit-2.24/Source/WebKit/ChangeLog	2019-03-27 23:48:01 UTC (rev 243589)
+++ releases/WebKitGTK/webkit-2.24/Source/WebKit/ChangeLog	2019-03-27 23:48:07 UTC (rev 243590)
@@ -1,3 +1,12 @@
+2019-03-26  Philippe Normand  <pnorm...@igalia.com>
+
+        [WPE][Qt] Uninitialized racy ViewBackend
+        https://bugs.webkit.org/show_bug.cgi?id=196247
+
+        Reviewed by Carlos Garcia Campos.
+
+        * UIProcess/API/wpe/qt/WPEQtView.h: Initialize the backend pointer to nullptr.
+
 2019-03-27  Adrian Perez de Castro  <ape...@igalia.com>
 
         Unreviewed. Update OptionsWPE.cmake and NEWS for the 2.24.0 release

Modified: releases/WebKitGTK/webkit-2.24/Source/WebKit/UIProcess/API/wpe/qt/WPEQtView.h (243589 => 243590)


--- releases/WebKitGTK/webkit-2.24/Source/WebKit/UIProcess/API/wpe/qt/WPEQtView.h	2019-03-27 23:48:01 UTC (rev 243589)
+++ releases/WebKitGTK/webkit-2.24/Source/WebKit/UIProcess/API/wpe/qt/WPEQtView.h	2019-03-27 23:48:07 UTC (rev 243590)
@@ -115,6 +115,6 @@
     QString m_html;
     QUrl m_baseUrl;
     QSizeF m_size;
-    WPEQtViewBackend* m_backend;
+    WPEQtViewBackend* m_backend { nullptr };
     bool m_errorOccured { false };
 };
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to