mirror of
git://slackware.nl/current.git
synced 2024-12-30 10:24:23 +01:00
58d830884f
a/bash-5.2.032-x86_64-1.txz: Upgraded. d/mercurial-6.8.1-x86_64-1.txz: Upgraded. l/pipewire-1.2.2-x86_64-1.txz: Upgraded. l/spirv-llvm-translator-18.1.3-x86_64-1.txz: Upgraded. n/php-8.3.10-x86_64-1.txz: Upgraded. This is a bugfix release. For more information, see: https://www.php.net/ChangeLog-8.php#8.3.10
49 lines
1.5 KiB
Text
49 lines
1.5 KiB
Text
BASH PATCH REPORT
|
|
=================
|
|
|
|
Bash-Release: 5.2
|
|
Patch-ID: bash52-028
|
|
|
|
Bug-Reported-by: Mark March <march@systempad.cloud>
|
|
Bug-Reference-ID: <834896722.6304071.1718744118467@mail.yahoo.com>
|
|
Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-bash/2024-06/msg00122.html
|
|
|
|
Bug-Description:
|
|
|
|
A DEBUG trap in an asynchronous process can steal the controlling terminal
|
|
away from the calling shell, causing it to exit.
|
|
|
|
Patch (apply with `patch -p0'):
|
|
|
|
*** ../bash-20240609/trap.c Fri May 3 12:12:38 2024
|
|
--- trap.c Wed Jun 26 10:41:40 2024
|
|
***************
|
|
*** 1217,1221 ****
|
|
restore_pgrp_pipe (save_pipe);
|
|
# endif
|
|
! if (pipeline_pgrp > 0 && ((subshell_environment & (SUBSHELL_ASYNC|SUBSHELL_PIPE)) == 0))
|
|
give_terminal_to (pipeline_pgrp, 1);
|
|
|
|
--- 1217,1223 ----
|
|
restore_pgrp_pipe (save_pipe);
|
|
# endif
|
|
! /* If the trap command gave the terminal to another process group,
|
|
! restore it. XXX - check running_in_background? */
|
|
! if (job_control && pipeline_pgrp > 0 && ((subshell_environment & (SUBSHELL_ASYNC|SUBSHELL_PIPE)) == 0))
|
|
give_terminal_to (pipeline_pgrp, 1);
|
|
|
|
*** ../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 27
|
|
|
|
#endif /* _PATCHLEVEL_H_ */
|
|
--- 26,30 ----
|
|
looks for to find the patch level (for the sccs version string). */
|
|
|
|
! #define PATCHLEVEL 28
|
|
|
|
#endif /* _PATCHLEVEL_H_ */
|