Blame SOURCES/bash-4.4-patch-10.patch

50ece2
From 5b9762d6f0cd36ff1b88bde22efa30ad0ed27ec6 Mon Sep 17 00:00:00 2001
50ece2
From: Chet Ramey <chet.ramey@case.edu>
50ece2
Date: Fri, 20 Jan 2017 15:38:38 -0500
50ece2
Subject: [PATCH] Bash-4.4 patch 10
50ece2
50ece2
---
50ece2
 builtins/read.def | 3 ++-
50ece2
 patchlevel.h      | 2 +-
50ece2
 2 files changed, 3 insertions(+), 2 deletions(-)
50ece2
50ece2
diff --git a/builtins/read.def b/builtins/read.def
50ece2
index 48fda33..33821f3 100644
50ece2
--- a/builtins/read.def
50ece2
+++ b/builtins/read.def
50ece2
@@ -181,7 +181,8 @@ read_builtin (list)
50ece2
      WORD_LIST *list;
50ece2
 {
50ece2
   register char *varname;
50ece2
-  int size, i, nr, pass_next, saw_escape, eof, opt, retval, code, print_ps2;
50ece2
+  int size, nr, pass_next, saw_escape, eof, opt, retval, code, print_ps2;
50ece2
+  volatile int i;
50ece2
   int input_is_tty, input_is_pipe, unbuffered_read, skip_ctlesc, skip_ctlnul;
50ece2
   int raw, edit, nchars, silent, have_timeout, ignore_delim, fd, lastsig, t_errno;
50ece2
   unsigned int tmsec, tmusec;
50ece2
diff --git a/patchlevel.h b/patchlevel.h
50ece2
index 02f1d60..8002af7 100644
50ece2
--- a/patchlevel.h
50ece2
+++ b/patchlevel.h
50ece2
@@ -25,6 +25,6 @@
50ece2
    regexp `^#define[ 	]*PATCHLEVEL', since that's what support/mkversion.sh
50ece2
    looks for to find the patch level (for the sccs version string). */
50ece2
 
50ece2
-#define PATCHLEVEL 9
50ece2
+#define PATCHLEVEL 10
50ece2
 
50ece2
 #endif /* _PATCHLEVEL_H_ */
50ece2
-- 
50ece2
2.9.3
50ece2