From ecfac1e240b7122266f824872afc86d4b9ba07a5 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 (llama/6929) --- ggml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml.c b/ggml.c index 2e929b8d..7f637543 100644 --- a/ggml.c +++ b/ggml.c @@ -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) {