slackware-current/source/a/bash/bash-5.1-patches/bash51-010
Patrick J Volkerding 061b63f432 Thu Nov 18 21:13:10 UTC 2021
a/bash-5.1.012-x86_64-1.txz:  Upgraded.
a/cryptsetup-2.4.2-x86_64-1.txz:  Upgraded.
a/kernel-generic-5.15.3-x86_64-1.txz:  Upgraded.
a/kernel-huge-5.15.3-x86_64-1.txz:  Upgraded.
a/kernel-modules-5.15.3-x86_64-1.txz:  Upgraded.
d/ccache-4.5.1-x86_64-1.txz:  Upgraded.
d/kernel-headers-5.15.3-x86-1.txz:  Upgraded.
k/kernel-source-5.15.3-noarch-1.txz:  Upgraded.
kde/latte-dock-0.10.4-x86_64-1.txz:  Upgraded.
n/php-7.4.26-x86_64-1.txz:  Upgraded.
  This update fixes bugs and a security issue:
  XML: special character is breaking the path in xml function.
  For more information, see:
    https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-21707
  (* Security fix *)
x/ibus-1.5.25-x86_64-5.txz:  Rebuilt.
  Fixed paths in:
  [PATCH] client/gtk3/ibusimcontext: Fix wrong cursor location in gtk3 apps.
  Thanks to Lockywolf.
xap/audacious-4.1-x86_64-3.txz:  Rebuilt.
  Removed the extra menu entry for the GTK+ version as this can just be
  selected in the settings. Thanks to franzen.
isolinux/initrd.img:  Rebuilt.
kernels/*:  Upgraded.
usb-and-pxe-installers/usbboot.img:  Rebuilt.
2021-11-19 08:59:57 +01:00

59 lines
1.7 KiB
Text

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_ */