Remove an obsoleted initialization from Wasm

This commit is contained in:
Takashi Kokubun 2023-07-27 17:36:07 -07:00
parent 8c7cf2de98
commit 44b19b01e2

2
vm.c
View File

@ -2355,7 +2355,7 @@ vm_exec(rb_execution_context_t *ec)
{
struct rb_vm_exec_context ctx = {
.ec = ec,
.initial = 0, .result = Qundef,
.result = Qundef,
};
struct rb_wasm_try_catch try_catch;