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