]> git.pld-linux.org Git - packages/bash.git/blob - bash32-036
- up to 3.2.39
[packages/bash.git] / bash32-036
1                              BASH PATCH REPORT
2                              =================
3
4 Bash-Release: 3.2
5 Patch-ID: bash32-036
6
7 Bug-Reported-by:        Len Lattanzi <llattanzi@apple.com>
8 Bug-Reference-ID:       <87493131-7AEC-4301-A684-E6CC6D06E3E1@apple.com>
9 Bug-Reference-URL:
10
11 Bug-Description:
12
13 When initializing a subshell, bash did not reset a sentinel keeping track
14 of the number of command substitutions, leading to an infinite loop if
15 an error was encountered in the subshell.
16
17 Patch:
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.068682 seconds and 3 git commands to generate.