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

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