Shell: Drop all the jobs after killing them in stop_all_jobs()

This commit is contained in:
AnotherTest 2020-10-27 17:16:20 +03:30 committed by Andreas Kling
commit a8c18f9fd2
Notes: sideshowbarker 2024-07-19 01:40:15 +09:00

View file

@ -1585,6 +1585,8 @@ void Shell::stop_all_jobs()
perror("killpg(KILL)"); perror("killpg(KILL)");
} }
} }
jobs.clear();
} }
} }