From: Liu Yuan <tailai.ly@xxxxxxxxxx> We forget to call strbuf_release to release the buf memory. Signed-off-by: Liu Yuan <tailai.ly@xxxxxxxxxx> --- builtin/mktree.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/builtin/mktree.c b/builtin/mktree.c index 098395f..4ae1c41 100644 --- a/builtin/mktree.c +++ b/builtin/mktree.c @@ -60,6 +60,7 @@ static void write_tree(unsigned char *sha1) } write_sha1_file(buf.buf, buf.len, tree_type, sha1); + strbuf_release(&buf); } static const char *mktree_usage[] = { -- 1.7.6.1 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html