perl/Module-Build-Tiny: update to 0.051 for Perl 5.36 and 5.38
[oi-userland.git] / components / shell / bash / patches / bash52-011.patch
blobe65a50a2d44695356e648009835d4ce281c83044
1 BASH PATCH REPORT
2 =================
4 Bash-Release: 5.2
5 Patch-ID: bash52-011
7 Bug-Reported-by: Fabien Orjollet <of1@disroot.org>
8 Bug-Reference-ID:
9 Bug-Reference-URL: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1023776
11 Bug-Description:
13 Patch (apply with `patch -p0'):
15 Using timeouts and readline editing with the `read' builtin (read -e -t) can
16 leave the readline timeout enabled, potentially resulting in an erroneous
17 timeout on the next call.
19 *** ../bash-5.2-patched/builtins/read.def 2022-06-02 14:23:19.000000000 -0400
20 --- builtins/read.def 2022-11-10 10:27:45.000000000 -0500
21 ***************
22 *** 168,171 ****
23 --- 168,174 ----
24 if (read_timeout)
25 shtimer_clear (read_timeout);
26 + #if defined (READLINE)
27 + rl_clear_timeout ();
28 + #endif
29 read_timeout = 0;
31 *** ../bash-5.2/patchlevel.h 2020-06-22 14:51:03.000000000 -0400
32 --- patchlevel.h 2020-10-01 11:01:28.000000000 -0400
33 ***************
34 *** 26,30 ****
35 looks for to find the patch level (for the sccs version string). */
37 ! #define PATCHLEVEL 10
39 #endif /* _PATCHLEVEL_H_ */
40 --- 26,30 ----
41 looks for to find the patch level (for the sccs version string). */
43 ! #define PATCHLEVEL 11
45 #endif /* _PATCHLEVEL_H_ */