Commit c90ed5b5583ab62f31cca55f4d9ea4386600e2a3

Carlos Martín Nieto 2014-12-18T02:11:06

Plug leaks

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/tests/index/tests.c b/tests/index/tests.c
index 6a751e7..d0372f1 100644
--- a/tests/index/tests.c
+++ b/tests/index/tests.c
@@ -325,6 +325,7 @@ static void add_invalid_filename(git_repository *repo, const char *fn)
 
 	cl_assert(git_index_entrycount(index) == 0);
 
+	git_buf_free(&path);
 	git_index_free(index);
 }
 
@@ -399,6 +400,7 @@ static void write_invalid_filename(git_repository *repo, const char *fn_orig)
 	p_unlink(path.ptr);
 
 	cl_git_pass(git_index_remove_all(index, NULL, NULL, NULL));
+	git_buf_free(&path);
 	git_index_free(index);
 	git__free(fn);
 }