mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-24 14:11:32 +00:00
Fix broken test that was creating a stack overflow
This commit is contained in:
@ -121,8 +121,6 @@ impl LocalBacking {
|
||||
}
|
||||
};
|
||||
|
||||
println!("func_data: {:#?}", func_data);
|
||||
|
||||
elements[init.offset + i] = vm::Anyfunc { func_data, sig_id };
|
||||
}
|
||||
}
|
||||
|
@ -84,8 +84,6 @@ impl Instance {
|
||||
) -> Result<Option<Value>, String> {
|
||||
let (func_ref, ctx, signature) = self.get_func_from_index(func_index);
|
||||
|
||||
println!("func_ref: {:?}", func_ref);
|
||||
|
||||
let func_ptr = CodePtr::from_ptr(func_ref.inner() as _);
|
||||
let vmctx_ptr = match ctx {
|
||||
Context::External(vmctx) => vmctx,
|
||||
|
Reference in New Issue
Block a user