summaryrefslogtreecommitdiff
path: root/app-shells/bash/files/bash-4.4-jobs_overflow.patch
diff options
context:
space:
mode:
Diffstat (limited to 'app-shells/bash/files/bash-4.4-jobs_overflow.patch')
-rw-r--r--app-shells/bash/files/bash-4.4-jobs_overflow.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/app-shells/bash/files/bash-4.4-jobs_overflow.patch b/app-shells/bash/files/bash-4.4-jobs_overflow.patch
new file mode 100644
index 000000000000..8753d62ec6c1
--- /dev/null
+++ b/app-shells/bash/files/bash-4.4-jobs_overflow.patch
@@ -0,0 +1,14 @@
+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)