Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-11-26 06:35:46 +0400
committerJunio C Hamano <gitster@pobox.com>2012-11-26 06:35:46 +0400
commitccf1bb3ab65f968b412b17cfdd9613b1d7bc61b4 (patch)
treebfe4e20347194a060814e723b9c85fc4f8fb6c2f /builtin
parent326922fd20edd1ad4651052f7e22abed89c5dc4e (diff)
parent962c38eedd931a608b5e675f12a21569d9f4d39f (diff)
Merge branch 'cn/config-missing-path' into maint
* cn/config-missing-path: config: don't segfault when given --path with a missing value
Diffstat (limited to 'builtin')
-rw-r--r--builtin/config.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin/config.c b/builtin/config.c
index e1c33e0691..505bbc7ddd 100644
--- a/builtin/config.c
+++ b/builtin/config.c
@@ -129,7 +129,8 @@ static int show_config(const char *key_, const char *value_, void *cb)
else
sprintf(value, "%d", v);
} else if (types == TYPE_PATH) {
- git_config_pathname(&vptr, key_, value_);
+ if (git_config_pathname(&vptr, key_, value_) < 0)
+ return -1;
must_free_vptr = 1;
} else if (value_) {
vptr = value_;