gguf : fix mismatch between alloc and free functions (llama/6929)

This commit is contained in:
slaren 2024-04-26 17:07:42 +02:00 committed by Georgi Gerganov
parent 6f7140f568
commit ecfac1e240

2
ggml.c
View File

@ -21058,7 +21058,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) {