slackware-current/source/a/bash/bash-5.2-patches/bash52-011
Patrick J Volkerding a8f1aa5a10 Thu Nov 24 20:55:37 UTC 2022
a/bash-5.2.012-x86_64-1.txz:  Upgraded.
a/less-612-x86_64-1.txz:  Upgraded.
a/tcsh-6.24.02-x86_64-1.txz:  Upgraded.
ap/vim-9.0.0942-x86_64-1.txz:  Upgraded.
d/make-4.4-x86_64-2.txz:  Rebuilt.
  [SV 63307] Spawn children with the default disposition of sigpipe.
  Thanks to nobodino.
d/ruby-3.1.3-x86_64-1.txz:  Upgraded.
  This release includes a security fix:
  HTTP response splitting in CGI.
  For more information, see:
    https://www.cve.org/CVERecord?id=CVE-2021-33621
  (* Security fix *)
l/pipewire-0.3.61-x86_64-1.txz:  Upgraded.
n/ipset-7.16-x86_64-1.txz:  Upgraded.
x/fcitx5-5.0.21-x86_64-1.txz:  Upgraded.
xap/vim-gvim-9.0.0942-x86_64-1.txz:  Upgraded.
2022-11-25 07:00:37 +01:00

45 lines
1.2 KiB
Text

BASH PATCH REPORT
=================
Bash-Release: 5.2
Patch-ID: bash52-011
Bug-Reported-by: Fabien Orjollet <of1@disroot.org>
Bug-Reference-ID:
Bug-Reference-URL: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1023776
Bug-Description:
Patch (apply with `patch -p0'):
Using timeouts and readline editing with the `read' builtin (read -e -t) can
leave the readline timeout enabled, potentially resulting in an erroneous
timeout on the next call.
*** ../bash-5.2-patched/builtins/read.def 2022-06-02 14:23:19.000000000 -0400
--- builtins/read.def 2022-11-10 10:27:45.000000000 -0500
***************
*** 168,171 ****
--- 168,174 ----
if (read_timeout)
shtimer_clear (read_timeout);
+ #if defined (READLINE)
+ rl_clear_timeout ();
+ #endif
read_timeout = 0;
}
*** ../bash-5.2/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 10
#endif /* _PATCHLEVEL_H_ */
--- 26,30 ----
looks for to find the patch level (for the sccs version string). */
! #define PATCHLEVEL 11
#endif /* _PATCHLEVEL_H_ */