]> git.pld-linux.org Git - packages/bash.git/blob - bash32-032
- up to 3.2.39
[packages/bash.git] / bash32-032
1                              BASH PATCH REPORT
2                              =================
3
4 Bash-Release: 3.2
5 Patch-ID: bash32-032
6
7 Bug-Reported-by:        Uwe Doering <gemini@geminix.org>
8 Bug-Reference-ID:       <46F3DD72.2090801@geminix.org>
9 Bug-Reference-URL:      http://lists.gnu.org/archive/html/bug-bash/2007-09/msg00102.html
10
11 Bug-Description:
12
13 There is an off-by-one error in the code that buffers characters received
14 very quickly in succession, causing characters to be dropped.
15
16 Patch:
17
18 *** ../bash-3.2-patched/lib/readline/input.c    2007-08-25 13:47:10.000000000 -0400
19 --- lib/readline/input.c        2007-10-12 22:55:25.000000000 -0400
20 ***************
21 *** 155,159 ****
22         pop_index--;
23         if (pop_index < 0)
24 !       pop_index = ibuffer_len - 1;
25         ibuffer[pop_index] = key;
26         return (1);
27 --- 155,159 ----
28         pop_index--;
29         if (pop_index < 0)
30 !       pop_index = ibuffer_len;
31         ibuffer[pop_index] = key;
32         return (1);
33 *** ../bash-3.2/patchlevel.h    Thu Apr 13 08:31:04 2006
34 --- patchlevel.h        Mon Oct 16 14:22:54 2006
35 ***************
36 *** 26,30 ****
37      looks for to find the patch level (for the sccs version string). */
38   
39 ! #define PATCHLEVEL 31
40   
41   #endif /* _PATCHLEVEL_H_ */
42 --- 26,30 ----
43      looks for to find the patch level (for the sccs version string). */
44   
45 ! #define PATCHLEVEL 32
46   
47   #endif /* _PATCHLEVEL_H_ */
This page took 0.03636 seconds and 3 git commands to generate.