diff options
author | Russell Belfer <rb@github.com> | 2013-01-30 11:25:20 -0800 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2013-01-30 11:25:20 -0800 |
commit | 3bf68be443738c7de91eac9084277360346c8971 (patch) | |
tree | 0c4a304888dbe5c6c83c547a947d28380c6ca4a0 /tests-clar/diff/patch.c | |
parent | f1e2735c74d03105592a282e2c32f45033db0e8d (diff) | |
download | libgit2-3bf68be443738c7de91eac9084277360346c8971.tar.gz |
Free buffer at end of test
Diffstat (limited to 'tests-clar/diff/patch.c')
-rw-r--r-- | tests-clar/diff/patch.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests-clar/diff/patch.c b/tests-clar/diff/patch.c index ea643e881..affa761de 100644 --- a/tests-clar/diff/patch.c +++ b/tests-clar/diff/patch.c @@ -299,4 +299,6 @@ void test_diff_patch__line_counts_with_eofnl(void) cl_git_rewritefile("renames/songofseven.txt", content.ptr); check_single_patch_stats(g_repo, 1, 1, 1); + + git_buf_free(&content); } |