File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1095,7 +1095,7 @@ static void collect_progress(
1095
1095
if (path == NULL )
1096
1096
return ;
1097
1097
1098
- git_vector_insert (paths , strdup (path ));
1098
+ git_vector_insert (paths , git__strdup (path ));
1099
1099
}
1100
1100
1101
1101
void test_checkout_conflict__report_progress (void )
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ static void assert_name_is(const char *expected)
89
89
if (start )
90
90
cl_assert_equal_strn ("/" , actual + (start - 1 ), 1 );
91
91
92
- free (actual );
92
+ git__free (actual );
93
93
}
94
94
95
95
static int symlink_or_fake (git_repository * repo , const char * a , const char * b )
Original file line number Diff line number Diff line change @@ -40,10 +40,10 @@ void test_remote_fetch__cleanup(void) {
40
40
git_repository_free (repo2 );
41
41
42
42
cl_git_pass (git_futils_rmdir_r (repo1_path , NULL , GIT_RMDIR_REMOVE_FILES ));
43
- free (repo1_path );
43
+ git__free (repo1_path );
44
44
45
45
cl_git_pass (git_futils_rmdir_r (repo2_path , NULL , GIT_RMDIR_REMOVE_FILES ));
46
- free (repo2_path );
46
+ git__free (repo2_path );
47
47
}
48
48
49
49
You can’t perform that action at this time.
0 commit comments