]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/patches/bash/bash52-011
suricata: Change midstream policy to "pass-flow"
[people/pmueller/ipfire-2.x.git] / src / patches / bash / bash52-011
CommitLineData
7ea6cba0
AB
1 BASH PATCH REPORT
2 =================
3
4Bash-Release: 5.2
5Patch-ID: bash52-011
6
7Bug-Reported-by: Fabien Orjollet <of1@disroot.org>
8Bug-Reference-ID:
9Bug-Reference-URL: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1023776
10
11Bug-Description:
12
13Patch (apply with `patch -p0'):
14
15Using timeouts and readline editing with the `read' builtin (read -e -t) can
16leave the readline timeout enabled, potentially resulting in an erroneous
17timeout on the next call.
18
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;
30 }
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). */
36
37! #define PATCHLEVEL 10
38
39 #endif /* _PATCHLEVEL_H_ */
40--- 26,30 ----
41 looks for to find the patch level (for the sccs version string). */
42
43! #define PATCHLEVEL 11
44
45 #endif /* _PATCHLEVEL_H_ */