MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove duplicate WAMR check

-6
-6
src/modules/wasm.c
··· 596 596 return js_mkerr_typed(js, JS_ERR_TYPE, "%s", error_buf); 597 597 } 598 598 599 - if (!wasm_module_validate(store, &binary)) { 600 - wasm_byte_vec_delete(&binary); 601 - wasm_store_delete(store); 602 - return wasm_make_compile_error(js, "Invalid WebAssembly binary"); 603 - } 604 - 605 599 module = wasm_module_new(store, &binary); 606 600 wasm_byte_vec_delete(&binary); 607 601 if (!module) {