Title: [226576] branches/safari-604.4.7.10-branch/Source/_javascript_Core/wasm/js/JSWebAssemblyMemory.cpp
- Revision
- 226576
- Author
- [email protected]
- Date
- 2018-01-08 15:15:36 -0800 (Mon, 08 Jan 2018)
Log Message
Apply patch. rdar://problem/36267662
fix indexing mask
Modified Paths
Diff
Modified: branches/safari-604.4.7.10-branch/Source/_javascript_Core/wasm/js/JSWebAssemblyMemory.cpp (226575 => 226576)
--- branches/safari-604.4.7.10-branch/Source/_javascript_Core/wasm/js/JSWebAssemblyMemory.cpp 2018-01-08 23:15:34 UTC (rev 226575)
+++ branches/safari-604.4.7.10-branch/Source/_javascript_Core/wasm/js/JSWebAssemblyMemory.cpp 2018-01-08 23:15:36 UTC (rev 226576)
@@ -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