summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Guenther <jguenther@gmail.com>2014-12-12 15:59:56 -0600
committerJunio C Hamano <gitster@pobox.com>2014-12-12 15:13:37 -0800
commit9dd70e0a0d17aa66c2d95a05952dec05db156fe3 (patch)
tree979b352aceba19fe805b6375021fe278e4ae933f
parent59d3924fbb300ebfe05f9079bcfe29d0a3f30661 (diff)
downloadgit-jg/prompt-localize-temporary.tar.gz
git-prompt.sh: make $f local to __git_eread()jg/prompt-localize-temporary
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>
-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"
}