aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2021-01-09 08:46:54 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2021-01-09 08:46:54 +0100
commit2b7c1aa92c68524559a2067609d09309d5c09adc (patch)
treef82686a7f0d2042a0a741eeb707ff64190434a89 /shell/ash.c
parent883cdb79a440d0425766f67aaef0cabde0a5060e (diff)
downloadbusybox-2b7c1aa92c68524559a2067609d09309d5c09adc.tar.gz
ash: match bash behavior for ${empty_var/*/repl}
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 76bf39ec2..1aead6df4 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -7178,7 +7178,7 @@ subevalvar(char *start, char *str, int strloc,
len = 0;
idx = startp;
end = str - 1;
- while (idx < end) {
+ while (idx <= end) {
try_to_match:
loc = scanright(idx, rmesc, rmescend, str, quotes, 1);
//bb_error_msg("scanright('%s'):'%s'", str, loc);
@@ -7186,6 +7186,8 @@ subevalvar(char *start, char *str, int strloc,
/* No match, advance */
char *restart_detect = stackblock();
skip_matching:
+ if (idx >= end)
+ break;
STPUTC(*idx, expdest);
if (quotes && (unsigned char)*idx == CTLESC) {
idx++;
@@ -7198,8 +7200,6 @@ subevalvar(char *start, char *str, int strloc,
len++;
rmesc++;
/* continue; - prone to quadratic behavior, smarter code: */
- if (idx >= end)
- break;
if (str[0] == '*') {
/* Pattern is "*foo". If "*foo" does not match "long_string",
* it would never match "ong_string" etc, no point in trying.