diff options
author | Johannes Sixt <johannes.sixt@telecom.at> | 2007-11-04 21:26:22 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-04 15:16:59 -0800 |
commit | c2015b3ae0d52ccae33ee00c2b25b8402c66bdf0 (patch) | |
tree | 89cbc34d7def468e193b431bacb07c88d305cb9a /t/t5510-fetch.sh | |
parent | 140dd77a5cb2e61dcb942e245a2474fae95e42a5 (diff) | |
download | git-c2015b3ae0d52ccae33ee00c2b25b8402c66bdf0.tar.gz git-c2015b3ae0d52ccae33ee00c2b25b8402c66bdf0.tar.xz |
Fix an infinite loop in sq_quote_buf().
sq_quote_buf() treats single-quotes and exclamation marks specially, but
it incorrectly parsed the input for single-quotes and backslashes.
Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5510-fetch.sh')
-rwxr-xr-x | t/t5510-fetch.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t5510-fetch.sh b/t/t5510-fetch.sh index d21765714..aad863db7 100755 --- a/t/t5510-fetch.sh +++ b/t/t5510-fetch.sh @@ -208,4 +208,11 @@ test_expect_success 'fetch with a non-applying branch.<name>.merge' ' git fetch blub ' +# the strange name is: a\!'b +test_expect_success 'quoting of a strangely named repo' ' + ! git fetch "a\\!'\''b" > result 2>&1 && + cat result && + grep "fatal: '\''a\\\\!'\''b'\''" result +' + test_done |