From 02e2208f46f4e2c00fb9743cbc47350bdd233bfa Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Tue, 16 Jan 2018 17:34:21 +0000 Subject: gentoo resync : 16.01.2018 --- app-shells/bash/files/bash-4.4-jobs_overflow.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 app-shells/bash/files/bash-4.4-jobs_overflow.patch (limited to 'app-shells/bash/files') 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) -- cgit v1.2.3