Fix bug in ctx_set_local_type()

This commit is contained in:
Maxime Chevalier-Boisvert 2021-04-09 14:48:02 -04:00 коммит произвёл Alan Wu
Родитель 6164274c76
Коммит 53ff2d791d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -202,7 +202,7 @@ Set the type of a local variable
*/
void ctx_set_local_type(ctx_t* ctx, size_t idx, val_type_t type)
{
if (ctx->stack_size > MAX_LOCAL_TYPES)
if (idx >= MAX_LOCAL_TYPES)
return;
ctx->local_types[idx] = type;