svashisht / rpms / bash

Forked from rpms/bash 4 years ago
Clone

Blame SOURCES/bash42-006

ff19ae
			     BASH PATCH REPORT
ff19ae
			     =================
ff19ae
ff19ae
Bash-Release:	4.2
ff19ae
Patch-ID:	bash42-006
ff19ae
ff19ae
Bug-Reported-by:	Allan McRae <allan@archlinux.org>
ff19ae
Bug-Reference-ID:	<4D6D0D0B.50908@archlinux.org>
ff19ae
Bug-Reference-URL:	http://lists.gnu.org/archive/html/bug-bash/2011-03/msg00001.html
ff19ae
ff19ae
Bug-Description:
ff19ae
ff19ae
A problem with bash42-005 caused it to dump core if TZ was unset.
ff19ae
ff19ae
Patch (apply with `patch -p0'):
ff19ae
ff19ae
*** ../bash-4.2-patched/variables.c	2011-02-25 12:07:41.000000000 -0500
ff19ae
--- variables.c	2011-03-01 10:13:04.000000000 -0500
ff19ae
***************
ff19ae
*** 3661,3665 ****
ff19ae
  
ff19ae
    v = find_variable (name);
ff19ae
!   if (exported_p (v))
ff19ae
      {
ff19ae
        array_needs_making = 1;
ff19ae
--- 3661,3665 ----
ff19ae
  
ff19ae
    v = find_variable (name);
ff19ae
!   if (v && exported_p (v))
ff19ae
      {
ff19ae
        array_needs_making = 1;
ff19ae
*** ../bash-4.2-patched/patchlevel.h	Sat Jun 12 20:14:48 2010
ff19ae
--- patchlevel.h	Thu Feb 24 21:41:34 2011
ff19ae
***************
ff19ae
*** 26,30 ****
ff19ae
     looks for to find the patch level (for the sccs version string). */
ff19ae
  
ff19ae
! #define PATCHLEVEL 5
ff19ae
  
ff19ae
  #endif /* _PATCHLEVEL_H_ */
ff19ae
--- 26,30 ----
ff19ae
     looks for to find the patch level (for the sccs version string). */
ff19ae
  
ff19ae
! #define PATCHLEVEL 6
ff19ae
  
ff19ae
  #endif /* _PATCHLEVEL_H_ */