summaryrefslogtreecommitdiff
path: root/t/t1300-repo-config.sh
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2011-06-09 15:52:43 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-06-22 18:24:51 (GMT)
commitc5d6350bdc8d0d8bd4bd1aa0273313e71cd548f6 (patch)
tree1a2a1f3d095ba519e1f3ef019d8cce217117fafb /t/t1300-repo-config.sh
parent1c2c9bee1bad9a4133a934d04c32b033cc16c8aa (diff)
downloadgit-c5d6350bdc8d0d8bd4bd1aa0273313e71cd548f6.zip
git-c5d6350bdc8d0d8bd4bd1aa0273313e71cd548f6.tar.gz
git-c5d6350bdc8d0d8bd4bd1aa0273313e71cd548f6.tar.bz2
config: avoid segfault when parsing command-line config
We already check for an empty key on the left side of an equals, but we would segfault if there was no content at all. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t1300-repo-config.sh')
-rwxr-xr-xt/t1300-repo-config.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh
index 584e956..3e140c1 100755
--- a/t/t1300-repo-config.sh
+++ b/t/t1300-repo-config.sh
@@ -918,4 +918,8 @@ test_expect_success 'git -c complains about empty key' '
test_must_fail git -c "=foo" rev-parse
'
+test_expect_success 'git -c complains about empty key and value' '
+ test_must_fail git -c "" rev-parse
+'
+
test_done