summaryrefslogtreecommitdiff
path: root/debian/patches/bash-subst-param-length.diff
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2014-10-08 11:48:42 +0400
committerIgor Pashev <pashev.igor@gmail.com>2014-10-08 11:48:42 +0400
commit597d7d4d9df6e688e766f1da1c7de92b191fbde9 (patch)
treee758dd00a56a9039deba2abab755033466bd0cbf /debian/patches/bash-subst-param-length.diff
downloadbash-597d7d4d9df6e688e766f1da1c7de92b191fbde9.tar.gz
Debian bash 4.3-11debian/4.3-11debian
Diffstat (limited to 'debian/patches/bash-subst-param-length.diff')
-rw-r--r--debian/patches/bash-subst-param-length.diff13
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/patches/bash-subst-param-length.diff b/debian/patches/bash-subst-param-length.diff
new file mode 100644
index 0000000..1ba51b6
--- /dev/null
+++ b/debian/patches/bash-subst-param-length.diff
@@ -0,0 +1,13 @@
+Index: b/subst.c
+===================================================================
+--- a/subst.c
++++ b/subst.c
+@@ -7160,7 +7160,7 @@
+ (sindex == t_index - 1 && string[sindex] == '!' && VALID_INDIR_PARAM (string[t_index])))
+ {
+ t_index++;
+- temp1 = string_extract (string, &t_index, "#%:-=?+/}", 0);
++ temp1 = string_extract (string, &t_index, "#%:-=?+/}", SX_VARNAME);
+ name = (char *)xrealloc (name, 3 + (strlen (temp1)));
+ *name = string[sindex];
+ if (string[sindex] == '!')