]> git.pld-linux.org Git - packages/bash.git/blame - bash41-003
- up to 4.2
[packages/bash.git] / bash41-003
CommitLineData
1074813e
AM
1 BASH PATCH REPORT
2 =================
3
4Bash-Release: 4.1
5Patch-ID: bash41-003
6
7Bug-Reported-by: coyote@wariat.org.pl
8Bug-Reference-ID: <4b64a1f8.06e2660a.60af.4bfb@mx.google.com>
9Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2010-01/msg00135.html
10
11Bug-Description:
12
13If command completion is attempted on a word with a quoted globbing
14character (e.g., `*' or `?'), bash can reference a NULL pointer and
15dump core.
16
17Patch (apply with `patch -p0'):
18
19*** ../bash-4.1-patched/bashline.c 2009-10-24 14:10:19.000000000 -0400
20--- bashline.c 2010-01-30 21:53:49.000000000 -0500
21***************
22*** 1681,1685 ****
23 characters in the common prefix are bad) will ever be returned on
24 regular completion. */
25! if (glob_pattern_p (hint))
26 {
27 if (state == 0)
28--- 1681,1685 ----
29 characters in the common prefix are bad) will ever be returned on
30 regular completion. */
31! if (globpat)
32 {
33 if (state == 0)
34*** ../bash-4.1-patched/patchlevel.h 2009-10-01 16:39:22.000000000 -0400
35--- patchlevel.h 2010-01-14 09:38:08.000000000 -0500
36***************
37*** 26,30 ****
38 looks for to find the patch level (for the sccs version string). */
39
40! #define PATCHLEVEL 2
41
42 #endif /* _PATCHLEVEL_H_ */
43--- 26,30 ----
44 looks for to find the patch level (for the sccs version string). */
45
46! #define PATCHLEVEL 3
47
48 #endif /* _PATCHLEVEL_H_ */
This page took 0.036059 seconds and 4 git commands to generate.