提交 7d397722 编写于 作者: A Anton Perkov

#1338 fix boundary check

上级 f82fc06c
......@@ -89,7 +89,7 @@ struct array_ptr {
static T* validated_ptr (wasm_interface& wasm, U32 ptr, size_t length) {
auto mem = getDefaultMemory(intrinsics_accessor::get_context(wasm).code.instance);
if(!mem || ptr + length >= IR::numBytesPerPage*Runtime::getMemoryNumPages(mem))
if(!mem || ptr + length > IR::numBytesPerPage*Runtime::getMemoryNumPages(mem))
Runtime::causeException(Exception::Cause::accessViolation);
return (T*)(getMemoryBaseAddress(mem) + ptr);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册