summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorslaren <slarengh@gmail.com>2024-04-26 17:07:42 +0200
committerGitHub <noreply@github.com>2024-04-26 18:07:42 +0300
commite2764cd7ca1112d9303eba9e81c9935ee67352ff (patch)
tree17abfe66fc5d859630595695b886be7b461af666
parent4b1c3c98b442a4c84a788fff6323f6fa7e678a5b (diff)
gguf : fix mismatch between alloc and free functions (#6929)
-rw-r--r--ggml.c2
1 files changed, 1 insertions, 1 deletions
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) {