Commit b3c524d1 by Vicent Martí

Merge pull request #399 from carlosmn/free-null

Add checks for NULL to the config and remote free functions
parents 2014021b 2aae2188
......@@ -25,6 +25,9 @@ void git_config_free(git_config *cfg)
git_config_file *file;
file_internal *internal;
if (cfg == NULL)
return;
for(i = 0; i < cfg->files.length; ++i){
internal = git_vector_get(&cfg->files, i);
file = internal->file;
......
......@@ -249,6 +249,9 @@ int git_remote_update_tips(struct git_remote *remote)
void git_remote_free(git_remote *remote)
{
if (remote == NULL)
return;
free(remote->fetch.src);
free(remote->fetch.dst);
free(remote->push.src);
......
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