python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / bash / bash44-010.patch
blob8da1ec5beadf0e5dbc3d6ea363e53900907dc7da
1 From https://ftp.gnu.org/gnu/bash/bash-4.4-patches/bash44-010
3 Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 BASH PATCH REPORT
6 =================
8 Bash-Release: 4.4
9 Patch-ID: bash44-010
11 Bug-Reported-by: Clark Wang <dearvoid@gmail.com>
12 Bug-Reference-ID: <CADv8-og092RvvUUHy46=BPKChCXw5g=GOOqgN0V3f4a3TpLebQ@mail.gmail.com>
13 Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2016-11/msg00104.html
15 Bug-Description:
17 Depending on compiler optimizations and behavior, the `read' builtin may not
18 save partial input when a timeout occurs.
20 Patch (apply with `patch -p0'):
22 *** bash-4.4-patched/builtins/read.def 2016-05-16 14:24:56.000000000 -0400
23 --- b/builtins/read.def 2016-11-25 12:37:56.000000000 -0500
24 ***************
25 *** 182,186 ****
27 register char *varname;
28 ! int size, i, nr, pass_next, saw_escape, eof, opt, retval, code, print_ps2;
29 int input_is_tty, input_is_pipe, unbuffered_read, skip_ctlesc, skip_ctlnul;
30 int raw, edit, nchars, silent, have_timeout, ignore_delim, fd, lastsig, t_errno;
31 --- b/182,187 ----
33 register char *varname;
34 ! int size, nr, pass_next, saw_escape, eof, opt, retval, code, print_ps2;
35 ! volatile int i;
36 int input_is_tty, input_is_pipe, unbuffered_read, skip_ctlesc, skip_ctlnul;
37 int raw, edit, nchars, silent, have_timeout, ignore_delim, fd, lastsig, t_errno;
39 *** bash-4.4/patchlevel.h 2016-06-22 14:51:03.000000000 -0400
40 --- b/patchlevel.h 2016-10-01 11:01:28.000000000 -0400
41 ***************
42 *** 26,30 ****
43 looks for to find the patch level (for the sccs version string). */
45 ! #define PATCHLEVEL 9
47 #endif /* _PATCHLEVEL_H_ */
48 --- b/26,30 ----
49 looks for to find the patch level (for the sccs version string). */
51 ! #define PATCHLEVEL 10
53 #endif /* _PATCHLEVEL_H_ */