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