bash44-018 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. BASH PATCH REPORT
  2. =================
  3. Bash-Release: 4.4
  4. Patch-ID: bash44-018
  5. Bug-Reported-by: Siteshwar Vashisht <svashisht@redhat.com>
  6. Bug-Reference-ID: <1341922391.30876471.1501250355579.JavaMail.zimbra@redhat.com>
  7. Bug-Reference-URL: https://bugzilla.redhat.com/show_bug.cgi?id=1466737
  8. Bug-Description:
  9. Under certain circumstances (e.g., reading from /dev/zero), read(2) will not
  10. return -1 even when interrupted by a signal. The read builtin needs to check
  11. for signals in this case.
  12. Patch (apply with `patch -p0'):
  13. *** ../bash-20170622/builtins/read.def 2017-06-17 18:45:20.000000000 -0400
  14. --- builtins/read.def 2017-06-30 11:09:26.000000000 -0400
  15. ***************
  16. *** 611,615 ****
  17. CHECK_ALRM;
  18. !
  19. #if defined (READLINE)
  20. }
  21. --- 611,615 ----
  22. CHECK_ALRM;
  23. ! QUIT; /* in case we didn't call check_signals() */
  24. #if defined (READLINE)
  25. }
  26. *** ../bash-4.4/patchlevel.h 2016-06-22 14:51:03.000000000 -0400
  27. --- patchlevel.h 2016-10-01 11:01:28.000000000 -0400
  28. ***************
  29. *** 26,30 ****
  30. looks for to find the patch level (for the sccs version string). */
  31. ! #define PATCHLEVEL 17
  32. #endif /* _PATCHLEVEL_H_ */
  33. --- 26,30 ----
  34. looks for to find the patch level (for the sccs version string). */
  35. ! #define PATCHLEVEL 18
  36. #endif /* _PATCHLEVEL_H_ */