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 c79b736 commit e714f55Copy full SHA for e714f55
lib/runtime-c-api/src/module.rs
@@ -285,7 +285,7 @@ pub unsafe extern "C" fn wasmer_module_deserialize(
285
let serialized_module: &[u8] = &*(serialized_module as *const &[u8]);
286
287
match Artifact::deserialize(serialized_module) {
288
- Ok(artifact) => match load_cache_with(artifact, &*default_compiler()) {
+ Ok(artifact) => match load_cache_with(artifact, &default_compiler()) {
289
Ok(deserialized_module) => {
290
*module = Box::into_raw(Box::new(deserialized_module)) as _;
291
wasmer_result_t::WASMER_OK
0 commit comments