浏览代码

additional cleanup: removing function stack elements too

main
Ludovic 'Archivist' Lagouardette 6 天前
父节点
当前提交
14ac77bf8d
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. +5
    -0
      lib.c

+ 5
- 0
lib.c 查看文件

@ -1210,7 +1210,12 @@ void ink_clean_routines(struct context* ctx) {
for (j = 0; j < ctx->routines[i].top; ++j) {
ctx->routines[i].stack[j] = null;
}
for (j = 0; j < ctx->routines[i].function_stack_top; ++j) {
ctx->routines[i].function_stack[j].executing = null;
ctx->routines[i].function_stack[j].index = 0;
}
ctx->routines[i].top = 0;
ctx->routines[i].function_stack_top = 0;
}
}
}

正在加载...
取消
保存