summaryrefslogtreecommitdiffstats
path: root/source/a/bash/bash-5.1-patches/bash51-010
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2022-09-26 19:43:54 +0000
committer Eric Hameleers <alien@slackware.com>2022-09-27 06:59:45 +0200
commit98175558d7a0dcd6e001ae887a44c05cf7955d63 (patch)
tree234639cf4c451359a2e1378954d53ce601bba068 /source/a/bash/bash-5.1-patches/bash51-010
parentc1abff4356b1c0bde79b73b1c88adec821b09872 (diff)
downloadcurrent-98175558d7a0dcd6e001ae887a44c05cf7955d63.tar.gz
current-98175558d7a0dcd6e001ae887a44c05cf7955d63.tar.xz
Mon Sep 26 19:43:54 UTC 202220220926194354
a/bash-5.2.000-x86_64-1.txz: Upgraded. ap/vim-9.0.0594-x86_64-1.txz: Upgraded. Fixed stack-based buffer overflow. Thanks to marav for the heads-up. In addition, Mig21 pointed out an issue where the defaults.vim file might need to be edited for some purposes as its contents will override the settings in the system-wide vimrc. Usually this file is replaced whenever vim is upgraded, which in those situations would be inconvenient for the admin. So, I've added support for a file named defaults.vim.custom which (if it exists) will be used instead of the defaults.vim file shipped in the package and will persist through upgrades. For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3296 (* Security fix *) l/fluidsynth-2.3.0-x86_64-1.txz: Upgraded. l/imagemagick-7.1.0_49-x86_64-1.txz: Upgraded. l/libcap-2.66-x86_64-1.txz: Upgraded. l/netpbm-10.99.03-x86_64-1.txz: Upgraded. l/readline-8.2.000-x86_64-1.txz: Upgraded. l/xapian-core-1.4.21-x86_64-1.txz: Upgraded. n/dnsmasq-2.87-x86_64-1.txz: Upgraded. Fix write-after-free error in DHCPv6 server code. For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0934 (* Security fix *) x/xterm-373-x86_64-1.txz: Upgraded. xap/vim-gvim-9.0.0594-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/a/bash/bash-5.1-patches/bash51-010')
-rw-r--r--source/a/bash/bash-5.1-patches/bash51-01059
1 files changed, 0 insertions, 59 deletions
diff --git a/source/a/bash/bash-5.1-patches/bash51-010 b/source/a/bash/bash-5.1-patches/bash51-010
deleted file mode 100644
index cfe6fa46b..000000000
--- a/source/a/bash/bash-5.1-patches/bash51-010
+++ /dev/null
@@ -1,59 +0,0 @@
- BASH PATCH REPORT
- =================
-
-Bash-Release: 5.1
-Patch-ID: bash51-010
-
-Bug-Reported-by: Jonas Alfredsson <jonas.alfredsson@protonmail.com>
-Bug-Reference-ID: <LjAfZaEuZncr2RaqhSSfcaiXdkuK6kdEYxshP3LApXbgMVQzggMGyWHO9knVkXicW2fP-ibsipJ_GZ-YaJRm96Rsozf6PgFmPsljRCtflls=@protonmail.com>
-Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-bash/2021-05/msg00059.html
-
-Bug-Description:
-
-If `wait -n' is interrupted by a trapped signal other than SIGINT, it does
-not completely clean up state, and that can prevent subsequent calls to
-`wait -n' from working correctly.
-
-Patch (apply with `patch -p0'):
-
-*** ../bash-5.1-patched/builtins/wait.def 2020-12-16 17:13:12.000000000 -0500
---- builtins/wait.def 2021-11-17 10:25:15.000000000 -0500
-***************
-*** 112,116 ****
- WORD_LIST *list;
- {
-! int status, code, opt, nflag, wflags;
- char *vname;
- SHELL_VAR *pidvar;
---- 112,117 ----
- WORD_LIST *list;
- {
-! int status, code, opt, nflag;
-! volatile int wflags;
- char *vname;
- SHELL_VAR *pidvar;
-***************
-*** 181,184 ****
---- 188,193 ----
- status = 128 + wait_signal_received;
- wait_sigint_cleanup ();
-+ if (wflags & JWAIT_WAITING)
-+ unset_waitlist ();
- WAIT_RETURN (status);
- }
-
-*** ../bash-5.1/patchlevel.h 2020-06-22 14:51:03.000000000 -0400
---- patchlevel.h 2020-10-01 11:01:28.000000000 -0400
-***************
-*** 26,30 ****
- looks for to find the patch level (for the sccs version string). */
-
-! #define PATCHLEVEL 9
-
- #endif /* _PATCHLEVEL_H_ */
---- 26,30 ----
- looks for to find the patch level (for the sccs version string). */
-
-! #define PATCHLEVEL 10
-
- #endif /* _PATCHLEVEL_H_ */