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-030
Tomas Janousek 9bf3d5
Tomas Janousek 9bf3d5
Bug-Reported-by:	Paul Eggert <eggert@cs.ucla.edu> Andreas Schwab <schwab@suse.de>
Tomas Janousek 9bf3d5
Bug-Reference-ID:	<877il0nu84.fsf_-_@penguin.cs.ucla.edu> <m28x5gparz.fsf@igel.home>
Tomas Janousek 9bf3d5
Bug-Reference-URL:	http://lists.gnu.org/archive/html/bug-bash/2007-11/msg00023.html http://lists.gnu.org/archive/html/bug-bash/2007-11/msg00022.htmlhttp://lists.gnu.org/archive/html/bug-bash/2007-11/msg00022.html
Tomas Janousek 9bf3d5
Tomas Janousek 9bf3d5
Bug-Description:
Tomas Janousek 9bf3d5
Tomas Janousek 9bf3d5
If redirections attached to a compound command fail, bash does not set the
Tomas Janousek 9bf3d5
command's exit status correctly.  This only happens when the command is the
Tomas Janousek 9bf3d5
first in a sequential list.
Tomas Janousek 9bf3d5
Tomas Janousek 9bf3d5
Patch:
Tomas Janousek 9bf3d5
Tomas Janousek 9bf3d5
*** ../bash-3.2-patched/execute_cmd.c	2007-03-24 14:51:05.000000000 -0400
Tomas Janousek 9bf3d5
--- execute_cmd.c	2007-11-05 22:31:14.000000000 -0500
Tomas Janousek 9bf3d5
***************
Tomas Janousek 9bf3d5
*** 615,619 ****
Tomas Janousek 9bf3d5
        redirection_undo_list = (REDIRECT *)NULL;
Tomas Janousek 9bf3d5
        dispose_exec_redirects ();
Tomas Janousek 9bf3d5
!       return (EXECUTION_FAILURE);
Tomas Janousek 9bf3d5
      }
Tomas Janousek 9bf3d5
  
Tomas Janousek 9bf3d5
--- 620,624 ----
Tomas Janousek 9bf3d5
        redirection_undo_list = (REDIRECT *)NULL;
Tomas Janousek 9bf3d5
        dispose_exec_redirects ();
Tomas Janousek 9bf3d5
!       return (last_command_exit_value = EXECUTION_FAILURE);
Tomas Janousek 9bf3d5
      }
Tomas Janousek 9bf3d5
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 29
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 30
Tomas Janousek 9bf3d5
  
Tomas Janousek 9bf3d5
  #endif /* _PATCHLEVEL_H_ */
Tomas Janousek 9bf3d5
Tomas Janousek 9bf3d5