From: slaren Date: Fri, 26 Apr 2024 15:07:42 +0000 (+0200) Subject: gguf : fix mismatch between alloc and free functions (llama/6929) X-Git-Tag: upstream/0.0.1642~747 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=2f91a8ece9581de6bb3100d2a4a15049281201da;p=pkg%2Fggml%2Fsources%2Fggml gguf : fix mismatch between alloc and free functions (llama/6929) --- diff --git a/src/ggml.c b/src/ggml.c index 2e929b8d..7f637543 100644 --- a/src/ggml.c +++ b/src/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) {