Commit 86e88534d6ad2982d7519084e4323e93829a571c

Patrick Steinhardt 2016-08-29T13:09:58

tests: index: do not re-allocate index Plug a memory leak caused by re-allocating a `git_index` structure which has already been allocated by the test suite's initializer.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/tests/index/collision.c b/tests/index/collision.c
index ad5827e..41eb7bf 100644
--- a/tests/index/collision.c
+++ b/tests/index/collision.c
@@ -79,8 +79,6 @@ void test_index_collision__add_with_highstage_2(void)
 {
 	git_index_entry entry;
 
-	cl_git_pass(git_repository_index(&g_index, g_repo));
-
 	memset(&entry, 0, sizeof(entry));
 	entry.ctime.seconds = 12346789;
 	entry.mtime.seconds = 12346789;