diff options
Diffstat (limited to 'toys/toysh.c')
-rw-r--r-- | toys/toysh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/toysh.c b/toys/toysh.c index b2dd2bba..23b88c3d 100644 --- a/toys/toysh.c +++ b/toys/toysh.c @@ -291,7 +291,7 @@ static void run_pipeline(struct pipeline *line) // This fakes lots of what toybox_main() does. memcpy(&temp, &toys, sizeof(struct toy_context)); - bzero(&toys, sizeof(struct toy_context)); + memset(&toys, 0, sizeof(struct toy_context)); toy_init(tl, cmd->argv); tl->toy_main(); cmd->pid = toys.exitval; |