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