disable removing complex objects

This commit is contained in:
vms 2020-08-20 19:30:23 +03:00
parent d32ca36253
commit 8e078a0457

View File

@ -198,8 +198,6 @@ where
// TODO: check
let string = String::from_utf8(string_mem).unwrap();
values.push_back(InterfaceValue::String(string));
utils::deallocate(instance, instruction, string_offset as _, string_size as _)?;
} else {
values.push_back(InterfaceValue::String("".to_string()));
}
@ -218,8 +216,6 @@ where
)?;
values.push_back(InterfaceValue::ByteArray(byte_array));
utils::deallocate(instance, instruction, array_offset as _, array_size as _)?;
} else {
values.push_back(InterfaceValue::ByteArray(vec![]));
}