]> git.pld-linux.org Git - packages/bash.git/blame - bash42-006
- up to 4.2.37
[packages/bash.git] / bash42-006
CommitLineData
74aff021
AM
1 BASH PATCH REPORT
2 =================
3
4Bash-Release: 4.2
5Patch-ID: bash42-006
6
7Bug-Reported-by: Allan McRae <allan@archlinux.org>
8Bug-Reference-ID: <4D6D0D0B.50908@archlinux.org>
9Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2011-03/msg00001.html
10
11Bug-Description:
12
13A problem with bash42-005 caused it to dump core if TZ was unset.
14
15Patch (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.034706 seconds and 4 git commands to generate.