Skip to content

Commit

Permalink
gguf : fix mismatch between alloc and free functions (#6929)
Browse files Browse the repository at this point in the history
  • Loading branch information
slaren authored Apr 26, 2024
1 parent 4b1c3c9 commit e2764cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit e2764cd

Please sign in to comment.