]> git.pld-linux.org Git - packages/bash.git/blob - bash42-006
- up to 4.2.37
[packages/bash.git] / bash42-006
1                              BASH PATCH REPORT
2                              =================
3
4 Bash-Release:   4.2
5 Patch-ID:       bash42-006
6
7 Bug-Reported-by:        Allan McRae <allan@archlinux.org>
8 Bug-Reference-ID:       <4D6D0D0B.50908@archlinux.org>
9 Bug-Reference-URL:      http://lists.gnu.org/archive/html/bug-bash/2011-03/msg00001.html
10
11 Bug-Description:
12
13 A problem with bash42-005 caused it to dump core if TZ was unset.
14
15 Patch (apply with `patch -p0'):
16
17 *** ../bash-4.2-patched/variables.c     2011-02-25 12:07:41.000000000 -0500
18 --- variables.c 2011-03-01 10:13:04.000000000 -0500
19 ***************
20 *** 3661,3665 ****
21   
22     v = find_variable (name);
23 !   if (exported_p (v))
24       {
25         array_needs_making = 1;
26 --- 3661,3665 ----
27   
28     v = find_variable (name);
29 !   if (v && exported_p (v))
30       {
31         array_needs_making = 1;
32 *** ../bash-4.2-patched/patchlevel.h    Sat Jun 12 20:14:48 2010
33 --- patchlevel.h        Thu Feb 24 21:41:34 2011
34 ***************
35 *** 26,30 ****
36      looks for to find the patch level (for the sccs version string). */
37   
38 ! #define PATCHLEVEL 5
39   
40   #endif /* _PATCHLEVEL_H_ */
41 --- 26,30 ----
42      looks for to find the patch level (for the sccs version string). */
43   
44 ! #define PATCHLEVEL 6
45   
46   #endif /* _PATCHLEVEL_H_ */
This page took 0.048589 seconds and 3 git commands to generate.