mirror of
https://github.com/fluencelabs/wasmer
synced 2025-03-16 16:20:49 +00:00
Fix returning the result from dynamic calls on the singlepass backend
This commit is contained in:
parent
57e24c957c
commit
f0a20151f6
@ -221,7 +221,9 @@ impl RunnableModule for X64ExecutionContext {
|
||||
)
|
||||
}) {
|
||||
Ok(x) => {
|
||||
*rets = x;
|
||||
if !rets.is_null() {
|
||||
*rets = x;
|
||||
}
|
||||
true
|
||||
}
|
||||
Err(_) => false,
|
||||
|
Loading…
x
Reference in New Issue
Block a user