Skip to content

Commit 9deadae

Browse files
authored
Merge pull request libgit2#5654 from dan-tull/master
Change bare free to allocator free (fixes libgit2#5653)
2 parents d32a407 + cce966c commit 9deadae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/path.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2045,7 +2045,7 @@ int git_path_validate_system_file_ownership(const char *path)
20452045
git_error_set(GIT_ERROR_INVALID, "programdata configuration file owner is not valid");
20462046
ret = GIT_ERROR;
20472047
}
2048-
free(info);
2048+
git__free(info);
20492049

20502050
cleanup:
20512051
if (descriptor)

0 commit comments

Comments
 (0)