mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
ash: fix handling of Unicode chars in redirects. Fixes bug 585
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
b6c8434896
commit
c8334a40c9
1 changed files with 1 additions and 1 deletions
|
|
@ -5817,7 +5817,7 @@ argstr(char *p, int flag, struct strlist *var_str_list)
|
|||
};
|
||||
const char *reject = spclchars;
|
||||
int c;
|
||||
int quotes = flag & (EXP_FULL | EXP_CASE); /* do CTLESC */
|
||||
int quotes = flag & (EXP_FULL | EXP_CASE | EXP_REDIR); /* do CTLESC */
|
||||
int breakall = flag & EXP_WORD;
|
||||
int inquotes;
|
||||
size_t length;
|
||||
|
|
|
|||
Loading…
Reference in a new issue