07a490
			     BASH PATCH REPORT
07a490
			     =================
07a490
07a490
Bash-Release:	4.2
07a490
Patch-ID:	bash42-026
07a490
07a490
Bug-Reported-by:	Greg Wooledge <wooledg@eeg.ccf.org>
07a490
Bug-Reference-ID:	<20120425180443.GO22241@eeg.ccf.org>
07a490
Bug-Reference-URL:	http://lists.gnu.org/archive/html/bug-bash/2012-04/msg00172.html
07a490
07a490
Bug-Description:
07a490
07a490
The `lastpipe' option does not behave correctly on machines where the
07a490
open file limit is less than 256.
07a490
07a490
Patch (apply with `patch -p0'):
07a490
07a490
*** ../bash-4.2-patched/execute_cmd.c	2011-11-21 12:04:47.000000000 -0500
07a490
--- execute_cmd.c	2012-04-26 11:09:30.000000000 -0400
07a490
***************
07a490
*** 2206,2210 ****
07a490
    if (lastpipe_opt && job_control == 0 && asynchronous == 0 && pipe_out == NO_PIPE && prev > 0)
07a490
      {
07a490
!       lstdin = move_to_high_fd (0, 0, 255);
07a490
        if (lstdin > 0)
07a490
  	{
07a490
--- 2325,2329 ----
07a490
    if (lastpipe_opt && job_control == 0 && asynchronous == 0 && pipe_out == NO_PIPE && prev > 0)
07a490
      {
07a490
!       lstdin = move_to_high_fd (0, 1, -1);
07a490
        if (lstdin > 0)
07a490
  	{
07a490
***************
07a490
*** 2252,2256 ****
07a490
--- 2371,2377 ----
07a490
      }
07a490
  
07a490
+ #if defined (JOB_CONTROL)
07a490
    discard_unwind_frame ("lastpipe-exec");
07a490
+ #endif
07a490
  
07a490
    return (exec_result);
07a490
07a490
*** ../bash-4.2-patched/patchlevel.h	Sat Jun 12 20:14:48 2010
07a490
--- patchlevel.h	Thu Feb 24 21:41:34 2011
07a490
***************
07a490
*** 26,30 ****
07a490
     looks for to find the patch level (for the sccs version string). */
07a490
  
07a490
! #define PATCHLEVEL 25
07a490
  
07a490
  #endif /* _PATCHLEVEL_H_ */
07a490
--- 26,30 ----
07a490
     looks for to find the patch level (for the sccs version string). */
07a490
  
07a490
! #define PATCHLEVEL 26
07a490
  
07a490
  #endif /* _PATCHLEVEL_H_ */