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.

48 lines
1.3 KiB

  1. BASH PATCH REPORT
  2. =================
  3. Bash-Release: 3.2
  4. Patch-ID: bash32-008
  5. Bug-Reported-by: Linda Walsh <bash@tlinx.org>
  6. Bug-Reference-ID: <456041FD.8000605@tlinx.org>
  7. Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2006-11/msg00040.html
  8. Bug-Description:
  9. When checking pathnames from the command hash table (e.g., when the `checkhash'
  10. shell option is enabled), a bug causes bash to delete and re-lookup each
  11. command.
  12. Patch:
  13. *** bash-3.2-patched/findcmd.c Wed Aug 17 16:49:54 2005
  14. --- findcmd.c Fri Nov 24 10:48:37 2006
  15. ***************
  16. *** 309,313 ****
  17. {
  18. st = file_status (hashed_file);
  19. ! if ((st ^ (FS_EXISTS | FS_EXECABLE)) != 0)
  20. {
  21. phash_remove (pathname);
  22. --- 309,313 ----
  23. {
  24. st = file_status (hashed_file);
  25. ! if ((st & (FS_EXISTS|FS_EXECABLE)) != (FS_EXISTS|FS_EXECABLE))
  26. {
  27. phash_remove (pathname);
  28. *** bash-3.2/patchlevel.h Thu Apr 13 08:31:04 2006
  29. --- patchlevel.h Mon Oct 16 14:22:54 2006
  30. ***************
  31. *** 26,30 ****
  32. looks for to find the patch level (for the sccs version string). */
  33. ! #define PATCHLEVEL 7
  34. #endif /* _PATCHLEVEL_H_ */
  35. --- 26,30 ----
  36. looks for to find the patch level (for the sccs version string). */
  37. ! #define PATCHLEVEL 8
  38. #endif /* _PATCHLEVEL_H_ */