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:
authorJustin Guenther <jguenther@gmail.com>2014-12-13 00:59:56 +0300
committerJunio C Hamano <gitster@pobox.com>2014-12-13 02:13:37 +0300
commit9dd70e0a0d17aa66c2d95a05952dec05db156fe3 (patch)
tree979b352aceba19fe805b6375021fe278e4ae933f /contrib
parent59d3924fbb300ebfe05f9079bcfe29d0a3f30661 (diff)
git-prompt.sh: make $f local to __git_eread()
This function uses (non-local) $f to store the value of its first parameter. This can interfere with the user's environment. Signed-off-by: Justin Guenther <jguenther@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rw-r--r--contrib/completion/git-prompt.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/git-prompt.sh b/contrib/completion/git-prompt.sh
index 54489080f8..dba928ed00 100644
--- a/contrib/completion/git-prompt.sh
+++ b/contrib/completion/git-prompt.sh
@@ -261,7 +261,7 @@ __git_ps1_colorize_gitstring ()
eread ()
{
- f="$1"
+ local f="$1"
shift
test -r "$f" && read "$@" <"$f"
}