mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
a72f2094ac
a/bash-5.2.021-x86_64-1.txz: Upgraded. ap/rdfind-1.6.0-x86_64-1.txz: Added. ap/sudo-1.9.15p2-x86_64-1.txz: Upgraded. l/ffmpeg-5.1.4-x86_64-1.txz: Upgraded. n/dhcpcd-10.0.5-x86_64-1.txz: Upgraded. n/whois-5.5.20-x86_64-1.txz: Upgraded. Added the .gn TLD server. Removed 6 new gTLDs which are no longer active. xfce/xfce4-whiskermenu-plugin-2.8.1-x86_64-1.txz: Upgraded.
47 lines
1.4 KiB
Text
47 lines
1.4 KiB
Text
BASH PATCH REPORT
|
|
=================
|
|
|
|
Bash-Release: 5.2
|
|
Patch-ID: bash52-017
|
|
|
|
Bug-Reported-by: Dan Church <h3xx@gmx.com>
|
|
Bug-Reference-ID: <1a8fd1d6-a3ac-9a67-78eb-b9a7435304c8@gmx.com>
|
|
Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-bash/2022-12/msg00076.html
|
|
|
|
Bug-Description:
|
|
|
|
In certain cases, using the `.' builtin in a subshell would optimize away
|
|
the rest of the commands in the subshell.
|
|
|
|
Patch (apply with `patch -p0'):
|
|
|
|
*** ../bash-5.2-patched/builtins/evalfile.c 2019-07-20 16:16:08.000000000 -0400
|
|
--- builtins/evalfile.c 2022-12-22 12:13:08.000000000 -0500
|
|
***************
|
|
*** 267,271 ****
|
|
|
|
/* set the flags to be passed to parse_and_execute */
|
|
! pflags = SEVAL_RESETLINE;
|
|
pflags |= (flags & FEVAL_HISTORY) ? 0 : SEVAL_NOHIST;
|
|
|
|
--- 267,271 ----
|
|
|
|
/* set the flags to be passed to parse_and_execute */
|
|
! pflags = SEVAL_RESETLINE|SEVAL_NOOPTIMIZE;
|
|
pflags |= (flags & FEVAL_HISTORY) ? 0 : SEVAL_NOHIST;
|
|
|
|
*** ../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 16
|
|
|
|
#endif /* _PATCHLEVEL_H_ */
|
|
--- 26,30 ----
|
|
looks for to find the patch level (for the sccs version string). */
|
|
|
|
! #define PATCHLEVEL 17
|
|
|
|
#endif /* _PATCHLEVEL_H_ */
|