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