Title: [266588] releases/WebKitGTK/webkit-2.30/Source/WTF
Revision
266588
Author
[email protected]
Date
2020-09-04 04:16:02 -0700 (Fri, 04 Sep 2020)

Log Message

Merge r266331 - [GTK] REGRESSION(r150392) insufficient space allocation results in heap corruption
https://bugs.webkit.org/show_bug.cgi?id=215976

Patch by Jim Mason <[email protected]> on 2020-08-30
Reviewed by Carlos Garcia Campos.

* wtf/glib/RunLoopGLib.cpp:
(WTF::RunLoop::TimerBase::TimerBase):

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.30/Source/WTF/ChangeLog (266587 => 266588)


--- releases/WebKitGTK/webkit-2.30/Source/WTF/ChangeLog	2020-09-04 11:15:58 UTC (rev 266587)
+++ releases/WebKitGTK/webkit-2.30/Source/WTF/ChangeLog	2020-09-04 11:16:02 UTC (rev 266588)
@@ -1,3 +1,13 @@
+2020-08-30  Jim Mason  <[email protected]>
+
+        [GTK] REGRESSION(r150392) insufficient space allocation results in heap corruption
+        https://bugs.webkit.org/show_bug.cgi?id=215976
+
+        Reviewed by Carlos Garcia Campos.
+
+        * wtf/glib/RunLoopGLib.cpp:
+        (WTF::RunLoop::TimerBase::TimerBase):
+
 2020-08-24  Carlos Garcia Campos  <[email protected]>
 
         [GTK] Implement rendering frames timeline panel for GTK+ port

Modified: releases/WebKitGTK/webkit-2.30/Source/WTF/wtf/glib/RunLoopGLib.cpp (266587 => 266588)


--- releases/WebKitGTK/webkit-2.30/Source/WTF/wtf/glib/RunLoopGLib.cpp	2020-09-04 11:15:58 UTC (rev 266587)
+++ releases/WebKitGTK/webkit-2.30/Source/WTF/wtf/glib/RunLoopGLib.cpp	2020-09-04 11:16:02 UTC (rev 266588)
@@ -158,7 +158,7 @@
 
 RunLoop::TimerBase::TimerBase(RunLoop& runLoop)
     : m_runLoop(runLoop)
-    , m_source(adoptGRef(g_source_new(&RunLoop::s_runLoopSourceFunctions, sizeof(GSource))))
+    , m_source(adoptGRef(g_source_new(&RunLoop::s_runLoopSourceFunctions, sizeof(RunLoopSource))))
 {
     auto& runLoopSource = *reinterpret_cast<RunLoopSource*>(m_source.get());
     runLoopSource.runLoop = m_runLoop.ptr();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to