We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 861ce83 commit 5e6754cCopy full SHA for 5e6754c
crates/wasmi/src/engine/executor/handler/dispatch.rs
@@ -170,7 +170,7 @@ pub fn init_wasm_func_call<'a, T>(
170
let compiled_func = code.get(Some(store.inner.fuel_mut()), engine_func)?;
171
let callee_ip = Ip::from(compiled_func.ops());
172
let frame_size = compiled_func.len_stack_slots();
173
- let callee_params = BoundedSlotSpan::new(SlotSpan::new(Slot::from(0)), frame_size);
+ let callee_params = BoundedSlotSpan::new(SlotSpan::new(Slot::from(0)), 0);
174
let instance = resolve_instance(store.prune(), &instance).into();
175
let callee_sp = stack.push_frame(
176
None,
0 commit comments