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