Title: [187794] trunk/Source/_javascript_Core
Revision
187794
Author
fpi...@apple.com
Date
2015-08-03 18:14:38 -0700 (Mon, 03 Aug 2015)

Log Message

Unreviewed, fix uninitialized property leading to an assert.

* runtime/PutPropertySlot.h:
(JSC::PutPropertySlot::PutPropertySlot):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (187793 => 187794)


--- trunk/Source/_javascript_Core/ChangeLog	2015-08-04 01:11:27 UTC (rev 187793)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-08-04 01:14:38 UTC (rev 187794)
@@ -1,5 +1,12 @@
 2015-08-03  Filip Pizlo  <fpi...@apple.com>
 
+        Unreviewed, fix uninitialized property leading to an assert.
+
+        * runtime/PutPropertySlot.h:
+        (JSC::PutPropertySlot::PutPropertySlot):
+
+2015-08-03  Filip Pizlo  <fpi...@apple.com>
+
         Unreviewed, fix Windows.
 
         * bytecode/ObjectPropertyConditionSet.h:

Modified: trunk/Source/_javascript_Core/runtime/PutPropertySlot.h (187793 => 187794)


--- trunk/Source/_javascript_Core/runtime/PutPropertySlot.h	2015-08-04 01:11:27 UTC (rev 187793)
+++ trunk/Source/_javascript_Core/runtime/PutPropertySlot.h	2015-08-04 01:14:38 UTC (rev 187794)
@@ -47,6 +47,7 @@
         : m_type(Uncachable)
         , m_base(0)
         , m_thisValue(thisValue)
+        , m_offset(invalidOffset)
         , m_isStrictMode(isStrictMode)
         , m_context(context)
         , m_putFunction(nullptr)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to