We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56526e9 commit 76c1448Copy full SHA for 76c1448
core/iwasm/interpreter/wasm_interp_fast.c
@@ -104,7 +104,7 @@ typedef float64 CellType_F64;
104
#if WASM_INSTRUCTION_METERING != 0
105
#define CHECK_INSTRUCTION_LIMIT() \
106
if (instructions_left == 0) { \
107
- wasm_set_exception(module_inst, "instruction limit exceeded"); \
+ wasm_set_exception(module, "instruction limit exceeded"); \
108
goto got_exception; \
109
} \
110
else if (instructions_left > 0) \
0 commit comments