diff options
author | 2018-06-13 10:02:00 +0800 | |
---|---|---|
committer | 2018-06-16 15:20:11 +0100 | |
commit | 7708859c4dcebff1e43516c23a8bf80f88fcea35 (patch) | |
tree | e09d7f84591af560978b7611bf2c1742a89ba868 | |
parent | Makefile: drive asciidoc directly for HTML output (diff) | |
download | cgit-7708859c4dcebff1e43516c23a8bf80f88fcea35.tar.xz cgit-7708859c4dcebff1e43516c23a8bf80f88fcea35.zip |
ui-tree: free read_sha1_file() buffer after use
Free up the buffer allocated in read_sha1_file()
Signed-off-by: Andy Green <andy@warmcat.com>
Signed-off-by: John Keeping <john@keeping.me.uk>
-rw-r--r-- | ui-tree.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -127,6 +127,8 @@ static void print_object(const unsigned char *sha1, char *path, const char *base print_binary_buffer(buf, size); else print_text_buffer(basename, buf, size); + + free(buf); } struct single_tree_ctx { |