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/1.7.4~803 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=ecfac1e240b7122266f824872afc86d4b9ba07a5;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp gguf : fix mismatch between alloc and free functions (llama/6929) --- 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) {