Skip to content

Commit

Permalink
fix crashing bug introduced
Browse files Browse the repository at this point in the history
  • Loading branch information
thefallentree committed Jun 2, 2023
1 parent bc042fc commit 03cec07
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/vm/internal/base/interpret.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3820,9 +3820,6 @@ void eval_instruction(char *p) {
break;
}
auto *actual_value = sp - st_num_arg + i;
if (IS_UNDEFINED(actual_value)) {
continue;
}
auto actual_type = actual_value->type;
auto *argtype_ptr_start = argtype_ptr;
while (*argtype_ptr != 0) {
Expand Down

0 comments on commit 03cec07

Please sign in to comment.