add missing gguf_free in load_checkpoint_lora_file

This commit is contained in:
xaedes 2023-09-03 20:04:03 +02:00
parent e07f5c57bb
commit bdb7092e82
No known key found for this signature in database
GPG key ID: 30030EDD817EA2B1

View file

@ -1556,6 +1556,7 @@ bool load_checkpoint_lora_file(const char * filename, struct my_llama_model * mo
load_checkpoint_lora_gguf(fctx, f_ggml_ctx, model, lora, opt); load_checkpoint_lora_gguf(fctx, f_ggml_ctx, model, lora, opt);
gguf_free(fctx);
return true; return true;
} }