From e2764cd7ca1112d9303eba9e81c9935ee67352ff Mon Sep 17 00:00:00 2001 From: slaren Date: Fri, 26 Apr 2024 17:07:42 +0200 Subject: [PATCH] gguf : fix mismatch between alloc and free functions (#6929) --- ggml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml.c b/ggml.c index 9f99a69d1..34eef23fc 100644 --- a/ggml.c +++ b/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) {