소스 검색

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;
}
}
}

불러오는 중...
취소
저장