diff options
author | Russell Belfer <rb@github.com> | 2013-12-11 16:56:17 -0800 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2013-12-11 16:56:17 -0800 |
commit | 7e3ed419593a2dc9fae3bd69fdf172de015d79d9 (patch) | |
tree | b48a9d0bd341a311eed787a65aa442452bfef518 /src/submodule.c | |
parent | 7697e54176ccab22ed6d4597d7256e9a1e6ff202 (diff) | |
download | libgit2-7e3ed419593a2dc9fae3bd69fdf172de015d79d9.tar.gz |
Fix up some valgrind leaks and warnings
Diffstat (limited to 'src/submodule.c')
-rw-r--r-- | src/submodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/submodule.c b/src/submodule.c index 1c36d3656..f6660a87e 100644 --- a/src/submodule.c +++ b/src/submodule.c @@ -1148,7 +1148,7 @@ static int submodule_load_from_config( */ if (path) - return 0; + goto done; /* copy other properties into submodule entry */ if (strcasecmp(property, "url") == 0) { |