Roman Rakus 6b9ac9
			     BASH PATCH REPORT
Roman Rakus 6b9ac9
			     =================
Roman Rakus 6b9ac9
Roman Rakus 6b9ac9
Bash-Release:	4.1
Roman Rakus 6b9ac9
Patch-ID:	bash41-004
Roman Rakus 6b9ac9
Roman Rakus 6b9ac9
Bug-Reported-by:	Crestez Dan Leonard <cdleonard@gmail.com>
Roman Rakus 6b9ac9
Bug-Reference-ID:	<1265592839.30682.21.camel@deskbox>
Roman Rakus 6b9ac9
Bug-Reference-URL:	http://lists.gnu.org/archive/html/bug-bash/2010-02/msg00034.html
Roman Rakus 6b9ac9
Roman Rakus 6b9ac9
Bug-Description:
Roman Rakus 6b9ac9
Roman Rakus 6b9ac9
When running in Posix mode and executing a shell function without local
Roman Rakus 6b9ac9
variables, bash will not propagate a variable in a special builtin's temporary
Roman Rakus 6b9ac9
environment to have global scope.
Roman Rakus 6b9ac9
Roman Rakus 6b9ac9
Patch (apply with `patch -p0'):
Roman Rakus 6b9ac9
Roman Rakus 6b9ac9
*** ../bash-4.1-patched/variables.c	2009-11-03 14:13:58.000000000 -0500
Roman Rakus 6b9ac9
--- variables.c	2010-02-08 17:36:18.000000000 -0500
Roman Rakus 6b9ac9
***************
Roman Rakus 6b9ac9
*** 3809,3812 ****
Roman Rakus 6b9ac9
--- 3809,3817 ----
Roman Rakus 6b9ac9
    if (tempvar_p (var) && (posixly_correct || (var->attributes & att_propagate)))
Roman Rakus 6b9ac9
      {
Roman Rakus 6b9ac9
+       /* Make sure we have a hash table to store the variable in while it is
Roman Rakus 6b9ac9
+ 	 being propagated down to the global variables table.  Create one if
Roman Rakus 6b9ac9
+ 	 we have to */
Roman Rakus 6b9ac9
+       if ((vc_isfuncenv (shell_variables) || vc_istempenv (shell_variables)) && shell_variables->table == 0)
Roman Rakus 6b9ac9
+ 	shell_variables->table = hash_create (0);
Roman Rakus 6b9ac9
        /* XXX - should we set v->context here? */
Roman Rakus 6b9ac9
        v = bind_variable_internal (var->name, value_cell (var), shell_variables->table, 0, 0);
Roman Rakus 6b9ac9
*** ../bash-4.1-patched/patchlevel.h	2009-10-01 16:39:22.000000000 -0400
Roman Rakus 6b9ac9
--- patchlevel.h	2010-01-14 09:38:08.000000000 -0500
Roman Rakus 6b9ac9
***************
Roman Rakus 6b9ac9
*** 26,30 ****
Roman Rakus 6b9ac9
     looks for to find the patch level (for the sccs version string). */
Roman Rakus 6b9ac9
  
Roman Rakus 6b9ac9
! #define PATCHLEVEL 3
Roman Rakus 6b9ac9
  
Roman Rakus 6b9ac9
  #endif /* _PATCHLEVEL_H_ */
Roman Rakus 6b9ac9
--- 26,30 ----
Roman Rakus 6b9ac9
     looks for to find the patch level (for the sccs version string). */
Roman Rakus 6b9ac9
  
Roman Rakus 6b9ac9
! #define PATCHLEVEL 4
Roman Rakus 6b9ac9
  
Roman Rakus 6b9ac9
  #endif /* _PATCHLEVEL_H_ */