llama: fix memory leak for grammar (#10696)
This commit is contained in:
parent
f46df4e5d2
commit
8cc33f4c2b
3
llama/sampling_ext.cpp
vendored
3
llama/sampling_ext.cpp
vendored
@ -114,6 +114,9 @@ void grammar_free(struct llama_grammar *g) {
|
||||
if (g->vocab != nullptr) {
|
||||
delete g->vocab;
|
||||
}
|
||||
if (g->o_vocab != nullptr) {
|
||||
delete g->o_vocab;
|
||||
}
|
||||
llama_grammar_free_impl(g);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user