fix loop over pointer
Co-authored-by: slaren <slarengh@gmail.com>
This commit is contained in:
parent
0fd652eba7
commit
1a179bfc4e
1 changed files with 1 additions and 1 deletions
|
@ -3040,7 +3040,7 @@ struct llama_model_loader {
|
||||||
if (meta) {
|
if (meta) {
|
||||||
gguf_free(meta);
|
gguf_free(meta);
|
||||||
}
|
}
|
||||||
for (auto & ctx : contexts) {
|
for (auto * ctx : contexts) {
|
||||||
ggml_free(ctx);
|
ggml_free(ctx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue