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