You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.5 KiB

  1. BASH PATCH REPORT
  2. =================
  3. Bash-Release: 4.3
  4. Patch-ID: bash43-024
  5. Bug-Reported-by: Corentin Peuvrel <cpeuvrel@pom-monitoring.com>
  6. Bug-Reference-ID: <53CE9E5D.6050203@pom-monitoring.com>
  7. Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2014-07/msg00021.html
  8. Bug-Description:
  9. Indirect variable references do not work correctly if the reference
  10. variable expands to an array reference using a subscript other than 0
  11. (e.g., foo='bar[1]' ; echo ${!foo}).
  12. Patch (apply with `patch -p0'):
  13. --- a/subst.c
  14. +++ b/subst.c
  15. @@ -7374,7 +7374,13 @@ parameter_brace_expand (string, indexp,
  16. }
  17. if (want_indir)
  18. - tdesc = parameter_brace_expand_indir (name + 1, var_is_special, quoted, quoted_dollar_atp, contains_dollar_at);
  19. + {
  20. + tdesc = parameter_brace_expand_indir (name + 1, var_is_special, quoted, quoted_dollar_atp, contains_dollar_at);
  21. + /* Turn off the W_ARRAYIND flag because there is no way for this function
  22. + to return the index we're supposed to be using. */
  23. + if (tdesc && tdesc->flags)
  24. + tdesc->flags &= ~W_ARRAYIND;
  25. + }
  26. else
  27. tdesc = parameter_brace_expand_word (name, var_is_special, quoted, PF_IGNUNBOUND|(pflags&(PF_NOSPLIT2|PF_ASSIGNRHS)), &ind);
  28. --- a/patchlevel.h
  29. +++ b/patchlevel.h
  30. @@ -25,6 +25,6 @@
  31. regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
  32. looks for to find the patch level (for the sccs version string). */
  33. -#define PATCHLEVEL 23
  34. +#define PATCHLEVEL 24
  35. #endif /* _PATCHLEVEL_H_ */