mirror of the now-defunct rocklinux.org
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.

47 lines
1.5 KiB

  1. BASH PATCH REPORT
  2. =================
  3. Bash-Release: 3.2
  4. Patch-ID: bash32-001
  5. Bug-Reported-by: Greg Schafer <gschafer@zip.com.au>
  6. Bug-Reference-ID: <20061012084940.GA15768@tigers.local>
  7. Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2006-10/msg00046.html
  8. Bug-Description:
  9. When using historical ``-style command substitution, bash incorrectly attempts
  10. to interpret shell comments while scanning for the closing backquote.
  11. Patch:
  12. *** bash-3.2/parse.y Tue Sep 19 16:37:21 2006
  13. --- parse.y Thu Oct 12 10:30:57 2006
  14. ***************
  15. *** 2736,2740 ****
  16. count = 1;
  17. pass_next_character = backq_backslash = was_dollar = in_comment = 0;
  18. ! check_comment = (flags & P_COMMAND) && qc != '\'' && qc != '"' && (flags & P_DQUOTE) == 0;
  19. /* RFLAGS is the set of flags we want to pass to recursive calls. */
  20. --- 2736,2740 ----
  21. count = 1;
  22. pass_next_character = backq_backslash = was_dollar = in_comment = 0;
  23. ! check_comment = (flags & P_COMMAND) && qc != '`' && qc != '\'' && qc != '"' && (flags & P_DQUOTE) == 0;
  24. /* RFLAGS is the set of flags we want to pass to recursive calls. */
  25. *** bash-3.2/patchlevel.h Thu Apr 13 08:31:04 2006
  26. --- patchlevel.h Mon Oct 16 14:22:54 2006
  27. ***************
  28. *** 26,30 ****
  29. looks for to find the patch level (for the sccs version string). */
  30. ! #define PATCHLEVEL 0
  31. #endif /* _PATCHLEVEL_H_ */
  32. --- 26,30 ----
  33. looks for to find the patch level (for the sccs version string). */
  34. ! #define PATCHLEVEL 1
  35. #endif /* _PATCHLEVEL_H_ */