diff options
author | Rob Landley <rob@landley.net> | 2021-04-03 06:01:32 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2021-04-03 06:01:32 -0500 |
commit | 4e2a912dac1f4a94ac81ea9c894de3d385563a2a (patch) | |
tree | 427fed73ec695817fe94c127cdaf868b73d44c0e | |
parent | 8f75eed7d5fe88434872172694bdbecf6e0e5e56 (diff) | |
download | toybox-4e2a912dac1f4a94ac81ea9c894de3d385563a2a.tar.gz |
Add a missing pop_block().
-rw-r--r-- | toys/pending/sh.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/toys/pending/sh.c b/toys/pending/sh.c index 7096d135..06dff9cf 100644 --- a/toys/pending/sh.c +++ b/toys/pending/sh.c @@ -3085,6 +3085,7 @@ static void run_lines(void) continue; } TT.ff->pl = TT.ff->pl->end; + pop_block(); dlist_add_nomalloc((void *)&pplist, (void *)pp); // handle start of block in this process |