Tomas Janousek 4fb099
			     BASH PATCH REPORT
Tomas Janousek 4fb099
			     =================
Tomas Janousek 4fb099
Tomas Janousek 4fb099
Bash-Release: 3.2
Tomas Janousek 4fb099
Patch-ID: bash32-032
Tomas Janousek 4fb099
Tomas Janousek 4fb099
Bug-Reported-by:	Uwe Doering <gemini@geminix.org>
Tomas Janousek 4fb099
Bug-Reference-ID:	<46F3DD72.2090801@geminix.org>
Tomas Janousek 4fb099
Bug-Reference-URL:	http://lists.gnu.org/archive/html/bug-bash/2007-09/msg00102.html
Tomas Janousek 4fb099
Tomas Janousek 4fb099
Bug-Description:
Tomas Janousek 4fb099
Tomas Janousek 4fb099
There is an off-by-one error in the code that buffers characters received
Tomas Janousek 4fb099
very quickly in succession, causing characters to be dropped.
Tomas Janousek 4fb099
Tomas Janousek 4fb099
Patch:
Tomas Janousek 4fb099
Tomas Janousek 4fb099
*** ../bash-3.2-patched/lib/readline/input.c	2007-08-25 13:47:10.000000000 -0400
Tomas Janousek 4fb099
--- lib/readline/input.c	2007-10-12 22:55:25.000000000 -0400
Tomas Janousek 4fb099
***************
Tomas Janousek 4fb099
*** 155,159 ****
Tomas Janousek 4fb099
        pop_index--;
Tomas Janousek 4fb099
        if (pop_index < 0)
Tomas Janousek 4fb099
! 	pop_index = ibuffer_len - 1;
Tomas Janousek 4fb099
        ibuffer[pop_index] = key;
Tomas Janousek 4fb099
        return (1);
Tomas Janousek 4fb099
--- 155,159 ----
Tomas Janousek 4fb099
        pop_index--;
Tomas Janousek 4fb099
        if (pop_index < 0)
Tomas Janousek 4fb099
! 	pop_index = ibuffer_len;
Tomas Janousek 4fb099
        ibuffer[pop_index] = key;
Tomas Janousek 4fb099
        return (1);
Tomas Janousek 4fb099
*** ../bash-3.2/patchlevel.h	Thu Apr 13 08:31:04 2006
Tomas Janousek 4fb099
--- patchlevel.h	Mon Oct 16 14:22:54 2006
Tomas Janousek 4fb099
***************
Tomas Janousek 4fb099
*** 26,30 ****
Tomas Janousek 4fb099
     looks for to find the patch level (for the sccs version string). */
Tomas Janousek 4fb099
  
Tomas Janousek 4fb099
! #define PATCHLEVEL 31
Tomas Janousek 4fb099
  
Tomas Janousek 4fb099
  #endif /* _PATCHLEVEL_H_ */
Tomas Janousek 4fb099
--- 26,30 ----
Tomas Janousek 4fb099
     looks for to find the patch level (for the sccs version string). */
Tomas Janousek 4fb099
  
Tomas Janousek 4fb099
! #define PATCHLEVEL 32
Tomas Janousek 4fb099
  
Tomas Janousek 4fb099
  #endif /* _PATCHLEVEL_H_ */