Skip to content

Commit e2764cd

Browse files
authored
gguf : fix mismatch between alloc and free functions (ggml-org#6929)
1 parent 4b1c3c9 commit e2764cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -20987,7 +20987,7 @@ void gguf_free(struct gguf_context * ctx) {
2098720987
GGML_FREE(ctx->infos);
2098820988
}
2098920989

20990-
GGML_ALIGNED_FREE(ctx);
20990+
GGML_FREE(ctx);
2099120991
}
2099220992

2099320993
const char * gguf_type_name(enum gguf_type type) {

0 commit comments

Comments
 (0)