You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-shells/bash/files/bash-4.4-jobs_overflow.patch

15 lines
331 B

https://lists.gnu.org/archive/html/bug-bash/2017-12/msg00025.html
https://bugs.gentoo.org/644720
--- bash-4.4/jobs.c
+++ bash-4.4/jobs.c
@@ -750,7 +750,7 @@
else
nsize = bgpids.nalloc;
- while (nsize < js.c_childmax)
+ while (nsize < (ps_index_t)js.c_childmax)
nsize *= 2;
if (bgpids.nalloc < js.c_childmax)