Title: [226592] branches/safari-604.5.100-branch/Source/_javascript_Core/wasm/js/JSWebAssemblyMemory.cpp
Revision
226592
Author
[email protected]
Date
2018-01-08 16:07:16 -0800 (Mon, 08 Jan 2018)

Log Message

Apply patch. rdar://problem/36276168

    fix indexing mask

Modified Paths

Diff

Modified: branches/safari-604.5.100-branch/Source/_javascript_Core/wasm/js/JSWebAssemblyMemory.cpp (226591 => 226592)


--- branches/safari-604.5.100-branch/Source/_javascript_Core/wasm/js/JSWebAssemblyMemory.cpp	2018-01-09 00:07:14 UTC (rev 226591)
+++ branches/safari-604.5.100-branch/Source/_javascript_Core/wasm/js/JSWebAssemblyMemory.cpp	2018-01-09 00:07:16 UTC (rev 226592)
@@ -117,7 +117,7 @@
         }
         m_memoryBase = memory().memory();
         m_memorySize = memory().size();
-        m_memorySize = memory().indexingMask();
+        m_indexingMask = memory().indexingMask();
     }
 
     // We need to clear out the old array buffer because it might now be pointing
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to