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

This commit is contained in:
slaren 2024-04-26 17:07:42 +02:00 committed by GitHub
parent 4b1c3c98b4
commit e2764cd7ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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