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