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(
10951095 if (path == NULL )
10961096 return ;
10971097
1098- git_vector_insert (paths , strdup (path ));
1098+ git_vector_insert (paths , git__strdup (path ));
10991099}
11001100
11011101void 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)
8989 if (start )
9090 cl_assert_equal_strn ("/" , actual + (start - 1 ), 1 );
9191
92- free (actual );
92+ git__free (actual );
9393}
9494
9595static 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) {
4040 git_repository_free (repo2 );
4141
4242 cl_git_pass (git_futils_rmdir_r (repo1_path , NULL , GIT_RMDIR_REMOVE_FILES ));
43- free (repo1_path );
43+ git__free (repo1_path );
4444
4545 cl_git_pass (git_futils_rmdir_r (repo2_path , NULL , GIT_RMDIR_REMOVE_FILES ));
46- free (repo2_path );
46+ git__free (repo2_path );
4747}
4848
4949
You can’t perform that action at this time.
0 commit comments