gguf : fix mismatch between alloc and free functions (#6929)
This commit is contained in:
parent
4b1c3c98b4
commit
e2764cd7ca
1 changed files with 1 additions and 1 deletions
2
ggml.c
2
ggml.c
|
@ -20987,7 +20987,7 @@ void gguf_free(struct gguf_context * ctx) {
|
|||
GGML_FREE(ctx->infos);
|
||||
}
|
||||
|
||||
GGML_ALIGNED_FREE(ctx);
|
||||
GGML_FREE(ctx);
|
||||
}
|
||||
|
||||
const char * gguf_type_name(enum gguf_type type) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue