branch Attitude Adjustment packages
[12.09/packages.git] / utils / bash / patches / 128-upstream-bash42-028.patch
1                              BASH PATCH REPORT
2                              =================
3
4 Bash-Release:   4.2
5 Patch-ID:       bash42-028
6
7 Bug-Reported-by:        Mark Edgar <medgar123@gmail.com>
8 Bug-Reference-ID:       <CABHMh_3d+ZgO_zaEtYXPwK4P7tC0ghZ4g=Ue_TRpsEMf5YDsqw@mail.gmail.com>
9 Bug-Reference-URL:      http://lists.gnu.org/archive/html/bug-bash/2012-03/msg00109.html
10
11 Bug-Description:
12
13 When using a word expansion for which the right hand side is evaluated,
14 certain expansions of quoted null strings include spurious ^? characters.
15
16 Patch (apply with `patch -p0'):
17
18 --- a/subst.c
19 +++ b/subst.c
20 @@ -5809,6 +5809,16 @@ parameter_brace_expand_rhs (name, value,
21          is the only expansion that creates more than one word. */
22        if (qdollaratp && ((hasdol && quoted) || l->next))
23         *qdollaratp = 1;
24 +      /* If we have a quoted null result (QUOTED_NULL(temp)) and the word is
25 +        a quoted null (l->next == 0 && QUOTED_NULL(l->word->word)), the
26 +        flags indicate it (l->word->flags & W_HASQUOTEDNULL), and the
27 +        expansion is quoted (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES))
28 +        (which is more paranoia than anything else), we need to return the
29 +        quoted null string and set the flags to indicate it. */
30 +      if (l->next == 0 && (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && QUOTED_NULL(temp) && QUOTED_NULL(l->word->word) && (l->word->flags & W_HASQUOTEDNULL))
31 +       {
32 +         w->flags |= W_HASQUOTEDNULL;
33 +       }
34        dispose_words (l);
35      }
36    else if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && hasdol)
37 --- a/patchlevel.h
38 +++ b/patchlevel.h
39 @@ -25,6 +25,6 @@
40     regexp `^#define[   ]*PATCHLEVEL', since that's what support/mkversion.sh
41     looks for to find the patch level (for the sccs version string). */
42  
43 -#define PATCHLEVEL 27
44 +#define PATCHLEVEL 28
45  
46  #endif /* _PATCHLEVEL_H_ */