ash: revert accidental change (should have been separate)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
53e5c59821
commit
ad57e4e4b2
@ -12751,7 +12751,7 @@ parsesub: {
|
|||||||
do {
|
do {
|
||||||
STPUTC(c, out);
|
STPUTC(c, out);
|
||||||
c = pgetc_eatbnl();
|
c = pgetc_eatbnl();
|
||||||
} while ((subtype == 0 || subtype == VSLENGTH) && isdigit(c));
|
} while (!subtype && isdigit(c));
|
||||||
} else if (c != '}') {
|
} else if (c != '}') {
|
||||||
/* $[{[#]]<specialchar>[}] */
|
/* $[{[#]]<specialchar>[}] */
|
||||||
int cc = c;
|
int cc = c;
|
||||||
@ -12781,6 +12781,11 @@ parsesub: {
|
|||||||
} else
|
} else
|
||||||
goto badsub;
|
goto badsub;
|
||||||
|
|
||||||
|
if (c != '}' && subtype == VSLENGTH) {
|
||||||
|
/* ${#VAR didn't end with } */
|
||||||
|
goto badsub;
|
||||||
|
}
|
||||||
|
|
||||||
if (subtype == 0) {
|
if (subtype == 0) {
|
||||||
static const char types[] ALIGN1 = "}-+?=";
|
static const char types[] ALIGN1 = "}-+?=";
|
||||||
/* ${VAR...} but not $VAR or ${#VAR} */
|
/* ${VAR...} but not $VAR or ${#VAR} */
|
||||||
@ -12837,8 +12842,6 @@ parsesub: {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (subtype == VSLENGTH && c != '}')
|
|
||||||
subtype = 0;
|
|
||||||
badsub:
|
badsub:
|
||||||
pungetc();
|
pungetc();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user