Merge pull request #5654 from dan-tull/master Change bare free to allocator free (fixes #5653)
diff --git a/src/path.c b/src/path.c
index 0d0b40f..f271c53 100644
--- a/src/path.c
+++ b/src/path.c
@@ -2045,7 +2045,7 @@ int git_path_validate_system_file_ownership(const char *path)
git_error_set(GIT_ERROR_INVALID, "programdata configuration file owner is not valid");
ret = GIT_ERROR;
}
- free(info);
+ git__free(info);
cleanup:
if (descriptor)