]> git.pld-linux.org Git - packages/bash.git/blame - bash32-036
- up to 3.2.39
[packages/bash.git] / bash32-036
CommitLineData
2eae9c88
AM
1 BASH PATCH REPORT
2 =================
3
4Bash-Release: 3.2
5Patch-ID: bash32-036
6
7Bug-Reported-by: Len Lattanzi <llattanzi@apple.com>
8Bug-Reference-ID: <87493131-7AEC-4301-A684-E6CC6D06E3E1@apple.com>
9Bug-Reference-URL:
10
11Bug-Description:
12
13When initializing a subshell, bash did not reset a sentinel keeping track
14of the number of command substitutions, leading to an infinite loop if
15an error was encountered in the subshell.
16
17Patch:
18
19*** ../bash-3.2-patched/execute_cmd.c 2007-12-13 22:31:14.000000000 -0500
20--- execute_cmd.c 2007-12-20 08:52:34.000000000 -0500
21***************
22*** 3881,3884 ****
23--- 3916,3921 ----
24
25 clear_unwind_protect_list (0);
26+ /* XXX -- are there other things we should be resetting here? */
27+ parse_and_execute_level = 0; /* nothing left to restore it */
28
29 /* We're no longer inside a shell function. */
30*** ../bash-3.2/patchlevel.h Thu Apr 13 08:31:04 2006
31--- patchlevel.h Mon Oct 16 14:22:54 2006
32***************
33*** 26,30 ****
34 looks for to find the patch level (for the sccs version string). */
35
36! #define PATCHLEVEL 35
37
38 #endif /* _PATCHLEVEL_H_ */
39--- 26,30 ----
40 looks for to find the patch level (for the sccs version string). */
41
42! #define PATCHLEVEL 36
43
44 #endif /* _PATCHLEVEL_H_ */
This page took 0.030272 seconds and 4 git commands to generate.