From f4b417c62a4f272c4cf9a074d0f7a3a97201f9db Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Tue, 17 Apr 2012 11:23:35 +0200 Subject: Update to upstream bash 4.2 This upgrades bash to from 4.1-rc to 4.2-release. See CWRU/changelog for changes. Change-Id: I926269c300cf44fa25964b5b375a148fcf11c4b7 --- alias.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'alias.c') diff --git a/alias.c b/alias.c index 558665e..6c95376 100644 --- a/alias.c +++ b/alias.c @@ -319,6 +319,8 @@ skipquotes (string, start) if (string[i] == '\\') { i++; /* skip backslash-quoted quote characters, too */ + if (string[i] == 0) + break; continue; } @@ -364,6 +366,8 @@ skipws (string, start) if (string[i] == '\\') { peekc = string[i+1]; + if (peekc == 0) + break; if (ISLETTER (peekc)) backslash_quoted_word++; /* this is a backslash-quoted word */ else @@ -429,6 +433,8 @@ rd_token (string, start) if (string[i] == '\\') { i++; /* skip backslash-escaped character */ + if (string[i] == 0) + break; continue; } -- cgit v1.1