Skip to content

Commit d894cfd

Browse files
author
Chet Ramey
committed
Bash-5.0 patch 11: fix quoted null character removal in operands of conditional ([[) commands
1 parent 6a3116f commit d894cfd

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

patchlevel.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
2626
looks for to find the patch level (for the sccs version string). */
2727

28-
#define PATCHLEVEL 10
28+
#define PATCHLEVEL 11
2929

3030
#endif /* _PATCHLEVEL_H_ */

subst.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -3625,7 +3625,9 @@ remove_backslashes (string)
36253625
this case, we quote the string specially for the globbing code. If
36263626
SPECIAL is 2, this is an rhs argument for the =~ operator, and should
36273627
be quoted appropriately for regcomp/regexec. The caller is responsible
3628-
for removing the backslashes if the unquoted word is needed later. */
3628+
for removing the backslashes if the unquoted word is needed later. In
3629+
any case, since we don't perform word splitting, we need to do quoted
3630+
null character removal. */
36293631
char *
36303632
cond_expand_word (w, special)
36313633
WORD_DESC *w;
@@ -3646,6 +3648,8 @@ cond_expand_word (w, special)
36463648
{
36473649
if (special == 0) /* LHS */
36483650
{
3651+
if (l->word)
3652+
word_list_remove_quoted_nulls (l);
36493653
dequote_list (l);
36503654
r = string_list (l);
36513655
}

0 commit comments

Comments
 (0)