mirror of
https://github.com/topjohnwu/ndk-busybox.git
synced 2024-11-25 21:00:10 +00:00
ash: fix segfault in ash.
patch by walter harms <wharms@bfs.de>
This commit is contained in:
parent
d0e70af9d1
commit
5f03158f66
@ -3042,6 +3042,7 @@ expredir(union node *n)
|
||||
|
||||
for (redir = n ; redir ; redir = redir->nfile.next) {
|
||||
struct arglist fn;
|
||||
memset(&fn, 0, sizeof(struct arglist));
|
||||
fn.lastp = &fn.list;
|
||||
switch (redir->type) {
|
||||
case NFROMTO:
|
||||
@ -3056,7 +3057,10 @@ expredir(union node *n)
|
||||
case NTOFD:
|
||||
if (redir->ndup.vname) {
|
||||
expandarg(redir->ndup.vname, &fn, EXP_FULL | EXP_TILDE);
|
||||
fixredir(redir, fn.list->text, 1);
|
||||
if (fn.list != NULL)
|
||||
fixredir(redir, fn.list->text, 1);
|
||||
else
|
||||
sh_error("redir error");
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user