Title: [196967] trunk/Source/_javascript_Core
Revision
196967
Author
sbar...@apple.com
Date
2016-02-22 17:01:46 -0800 (Mon, 22 Feb 2016)

Log Message

JSGlobalObject doesn't visit ProxyObjectStructure during GC
https://bugs.webkit.org/show_bug.cgi?id=154564

Rubber stamped by Mark Lam.

* runtime/JSGlobalObject.cpp:
(JSC::JSGlobalObject::visitChildren):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (196966 => 196967)


--- trunk/Source/_javascript_Core/ChangeLog	2016-02-23 00:51:02 UTC (rev 196966)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-02-23 01:01:46 UTC (rev 196967)
@@ -1,5 +1,15 @@
 2016-02-22  Saam barati  <sbar...@apple.com>
 
+        JSGlobalObject doesn't visit ProxyObjectStructure during GC
+        https://bugs.webkit.org/show_bug.cgi?id=154564
+
+        Rubber stamped by Mark Lam.
+
+        * runtime/JSGlobalObject.cpp:
+        (JSC::JSGlobalObject::visitChildren):
+
+2016-02-22  Saam barati  <sbar...@apple.com>
+
         InternalFunction::createSubclassStructure doesn't take into account that get() might throw
         https://bugs.webkit.org/show_bug.cgi?id=154548
 

Modified: trunk/Source/_javascript_Core/runtime/JSGlobalObject.cpp (196966 => 196967)


--- trunk/Source/_javascript_Core/runtime/JSGlobalObject.cpp	2016-02-23 00:51:02 UTC (rev 196966)
+++ trunk/Source/_javascript_Core/runtime/JSGlobalObject.cpp	2016-02-23 01:01:46 UTC (rev 196967)
@@ -902,6 +902,7 @@
     visitor.append(&thisObject->m_consoleStructure);
     visitor.append(&thisObject->m_dollarVMStructure);
     visitor.append(&thisObject->m_internalFunctionStructure);
+    visitor.append(&thisObject->m_proxyObjectStructure);
 #if ENABLE(WEBASSEMBLY)
     visitor.append(&thisObject->m_wasmModuleStructure);
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to