rcolebaugh / rpms / bash

Forked from rpms/bash a year ago
Clone
07a490
			     BASH PATCH REPORT
07a490
			     =================
07a490
07a490
Bash-Release:	4.2
07a490
Patch-ID:	bash42-023
07a490
07a490
Bug-Reported-by:	Ewan Mellor <Ewan.Mellor@eu.citrix.com>
07a490
Bug-Reference-ID:	<6005BE083BF501439A84DC3523BAC82DC4B964FD12@LONPMAILBOX01.citrite.net>
07a490
Bug-Reference-URL:	
07a490
07a490
Bug-Description:
07a490
07a490
Under some circumstances, an exit trap triggered by a bad substitution
07a490
error when errexit is enabled will cause the shell to exit with an
07a490
incorrect exit status (0).
07a490
07a490
Patch (apply with `patch -p0'):
07a490
07a490
*** ../bash-4.2-patched/subst.c	2011-11-21 12:04:38.000000000 -0500
07a490
--- subst.c	2012-02-08 13:36:28.000000000 -0500
07a490
***************
07a490
*** 7275,7278 ****
07a490
--- 7281,7285 ----
07a490
      case '\0':
07a490
      bad_substitution:
07a490
+       last_command_exit_value = EXECUTION_FAILURE;
07a490
        report_error (_("%s: bad substitution"), string ? string : "??");
07a490
        FREE (value);
07a490
*** ../bash-4.2-patched/error.c	2009-08-21 22:31:31.000000000 -0400
07a490
--- error.c	2012-02-25 15:54:40.000000000 -0500
07a490
***************
07a490
*** 201,205 ****
07a490
    va_end (args);
07a490
    if (exit_immediately_on_error)
07a490
!     exit_shell (1);
07a490
  }
07a490
  
07a490
--- 201,209 ----
07a490
    va_end (args);
07a490
    if (exit_immediately_on_error)
07a490
!     {
07a490
!       if (last_command_exit_value == 0)
07a490
! 	last_command_exit_value = 1;
07a490
!       exit_shell (last_command_exit_value);
07a490
!     }
07a490
  }
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 22
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 23
07a490
  
07a490
  #endif /* _PATCHLEVEL_H_ */