remove redundant free memory call.

This commit is contained in:
wbpxre150 2023-04-18 19:11:59 +08:00
parent a1ee3b4e47
commit 391c5a247a

View file

@ -38,7 +38,6 @@ void sigint_handler(int signo) {
is_interacting=true; is_interacting=true;
} else { } else {
llama_print_timings(ctx); llama_print_timings(ctx);
llama_free(ctx);
_exit(130); _exit(130);
} }
} }