From 9dd70e0a0d17aa66c2d95a05952dec05db156fe3 Mon Sep 17 00:00:00 2001 From: Justin Guenther Date: Fri, 12 Dec 2014 15:59:56 -0600 Subject: [PATCH] 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 Signed-off-by: Junio C Hamano --- contrib/completion/git-prompt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" }