migration from private to rsa
[external/bash.git] / debian / patches / bash41-003.dpatch
1 #! /bin/sh -e
2
3 if [ $# -eq 3 -a "$2" = '-d' ]; then
4     pdir="-d $3"
5 elif [ $# -ne 1 ]; then
6     echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
7     exit 1
8 fi
9 case "$1" in
10     -patch) patch $pdir -f --no-backup-if-mismatch -p1 < $0;;
11     -unpatch) patch $pdir -f --no-backup-if-mismatch -R -p1 < $0;;
12     *)
13         echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
14         exit 1
15 esac
16 exit 0
17
18 # DP: bash-4.1 upstream patch 003
19
20                              BASH PATCH REPORT
21                              =================
22
23 Bash-Release:   4.1
24 Patch-ID:       bash41-003
25
26 Bug-Reported-by:        coyote@wariat.org.pl
27 Bug-Reference-ID:       <4b64a1f8.06e2660a.60af.4bfb@mx.google.com>
28 Bug-Reference-URL:      http://lists.gnu.org/archive/html/bug-bash/2010-01/msg00135.html
29
30 Bug-Description:
31
32 If command completion is attempted on a word with a quoted globbing
33 character (e.g., `*' or `?'), bash can reference a NULL pointer and
34 dump core.
35
36 Patch (apply with `patch -p0'):
37
38 *** ../bash-4.1-patched/bashline.c      2009-10-24 14:10:19.000000000 -0400
39 --- ./bashline.c        2010-01-30 21:53:49.000000000 -0500
40 ***************
41 *** 1681,1685 ****
42        characters in the common prefix are bad) will ever be returned on
43        regular completion. */
44 !   if (glob_pattern_p (hint))
45       {
46         if (state == 0)
47 --- 1681,1685 ----
48        characters in the common prefix are bad) will ever be returned on
49        regular completion. */
50 !   if (globpat)
51       {
52         if (state == 0)
53 *** ../bash-4.1-patched/patchlevel.h    2009-10-01 16:39:22.000000000 -0400
54 --- ./patchlevel.h      2010-01-14 09:38:08.000000000 -0500
55 ***************
56 *** 26,30 ****
57      looks for to find the patch level (for the sccs version string). */
58   
59 ! #define PATCHLEVEL 2
60   
61   #endif /* _PATCHLEVEL_H_ */
62 --- 26,30 ----
63      looks for to find the patch level (for the sccs version string). */
64   
65 ! #define PATCHLEVEL 3
66   
67   #endif /* _PATCHLEVEL_H_ */