mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-23 22:52:23 +03:00
wordexp must set the we_offs entries of we_wordv to null pointers
This commit is contained in:
parent
bef7a85e45
commit
0d5df2df4f
@ -139,6 +139,10 @@ static int do_wordexp(const char *s, wordexp_t *we, int flags)
|
||||
|
||||
we->we_wordv = wv;
|
||||
we->we_wordc = i;
|
||||
|
||||
for (i=we->we_offs; i; i--)
|
||||
we->we_wordv[i-1] = 0;
|
||||
|
||||
if (flags & WRDE_DOOFFS) we->we_wordc -= we->we_offs;
|
||||
return err;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user