summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVicent Martí <tanoku@gmail.com>2011-09-18 19:46:12 -0700
committerVicent Martí <tanoku@gmail.com>2011-09-18 19:46:12 -0700
commitb3c524d1048af85158296bc6aee4fbf57241a208 (patch)
treefdee0385f779352b4a7ff8019dfc13696ed56898 /src
parent2014021b201e3af4c5bf132fbf1bce5fb6148e21 (diff)
parent2aae21888133171e970b8f41bb6594b83c89238e (diff)
downloadlibgit2-b3c524d1048af85158296bc6aee4fbf57241a208.tar.gz
Merge pull request #399 from carlosmn/free-null
Add checks for NULL to the config and remote free functions
Diffstat (limited to 'src')
-rw-r--r--src/config.c3
-rw-r--r--src/remote.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c
index 975e353f2..f233e76fd 100644
--- a/src/config.c
+++ b/src/config.c
@@ -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;
diff --git a/src/remote.c b/src/remote.c
index 74a238d95..ad9dedc15 100644
--- a/src/remote.c
+++ b/src/remote.c
@@ -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);