mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2025-03-06 20:48:53 +01:00
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
Reference in a new issue