Unverified Commit 9deadaee by Edward Thomson Committed by GitHub

Merge pull request #5654 from dan-tull/master

Change bare free to allocator free (fixes #5653)
parents d32a4072 cce966c3
...@@ -2045,7 +2045,7 @@ int git_path_validate_system_file_ownership(const char *path) ...@@ -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"); git_error_set(GIT_ERROR_INVALID, "programdata configuration file owner is not valid");
ret = GIT_ERROR; ret = GIT_ERROR;
} }
free(info); git__free(info);
cleanup: cleanup:
if (descriptor) if (descriptor)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment