diff options
author | Steve Grubb <ausearch.1@gmail.com> | 2024-03-14 14:29:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 20:29:32 +0200 |
commit | 6e0438da3cc95b89cdbf55f45fa4e324d9076792 (patch) | |
tree | 82e2e752df7c50b24aba8459e935ac83309214fb /examples/llama-bench/llama-bench.cpp | |
parent | 727107707a73b3dc8a497cf9fc9405722c16dd2b (diff) |
gguf : fix resource leaks (#6061)
There several places where a gguf context is allocated. A call to gguf_free
is missing in some error paths. Also on linux, llama-bench was missing a
fclose.
Diffstat (limited to 'examples/llama-bench/llama-bench.cpp')
-rw-r--r-- | examples/llama-bench/llama-bench.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/llama-bench/llama-bench.cpp b/examples/llama-bench/llama-bench.cpp index bf94e7e7..d6e5e049 100644 --- a/examples/llama-bench/llama-bench.cpp +++ b/examples/llama-bench/llama-bench.cpp @@ -103,6 +103,7 @@ static std::string get_cpu_info() { } } } + fclose(f); } #endif // TODO: other platforms |