gguf : fix mismatch between alloc and free functions

This commit is contained in:
slaren 2024-04-26 16:14:36 +02:00
parent bbe3c6e761
commit 828661cfe6

2
ggml.c
View file

@ -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) {