From: slaren Date: Fri, 26 Apr 2024 15:07:42 +0000 (+0200) Subject: gguf : fix mismatch between alloc and free functions (#6929) X-Git-Tag: upstream/0.0.4488~1741 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=e2764cd7ca1112d9303eba9e81c9935ee67352ff;p=pkg%2Fggml%2Fsources%2Fllama.cpp gguf : fix mismatch between alloc and free functions (#6929) --- diff --git a/ggml.c b/ggml.c index 9f99a69d..34eef23f 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) {