Mostly fixed already by 6b44577 (mergetool: check return value from read, 2011-07-01). Catch two uses it missed. Signed-off-by: Jay Soffian <jaysoffian@xxxxxxxxx> --- On Mon, Sep 19, 2011 at 4:37 PM, Junio C Hamano <gitster@xxxxxxxxx> wrote: > We still seem to miss one "read" unchecked in resolve_symlink_merge(), > even with this patch. > [...] > I suspect that it would be more consistent with 6b44577 (mergetool: check > return value from read, 2011-07-01), which this patch is a follow-up to, > to do: > > read answer || return 1 > > here. Thanks, sorry I missed that. git-mergetool--lib.sh | 2 +- git-mergetool.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/git-mergetool--lib.sh b/git-mergetool--lib.sh index 8fc65d0400..ed630b208a 100644 --- a/git-mergetool--lib.sh +++ b/git-mergetool--lib.sh @@ -21,7 +21,7 @@ check_unchanged () { do echo "$MERGED seems unchanged." printf "Was the merge successful? [y/n] " - read answer + read answer || return 1 case "$answer" in y*|Y*) status=0; break ;; n*|N*) status=1; break ;; diff --git a/git-mergetool.sh b/git-mergetool.sh index 3c157bcd26..b6d463f0d0 100755 --- a/git-mergetool.sh +++ b/git-mergetool.sh @@ -72,7 +72,7 @@ describe_file () { resolve_symlink_merge () { while true; do printf "Use (l)ocal or (r)emote, or (a)bort? " - read ans + read ans || return 1 case "$ans" in [lL]*) git checkout-index -f --stage=2 -- "$MERGED" -- 1.7.7.rc2.2.gdf97720 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html