summaryrefslogtreecommitdiff
path: root/Src/parse.c
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2012-10-25 08:54:31 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2012-10-25 08:54:31 +0000
commitcd0c6153e0cae68d06a052ea84f3a965c25dde98 (patch)
treead679e52e0f67f71cd5ddea998ac22eb3301f875 /Src/parse.c
parentc74171da364f5cf88c9a606e977c603e141d2158 (diff)
downloadzsh-cd0c6153e0cae68d06a052ea84f3a965c25dde98.tar.gz
zsh-cd0c6153e0cae68d06a052ea84f3a965c25dde98.zip
30735: array substitutions aren't simple:
prevent crash on process substitution therein
Diffstat (limited to 'Src/parse.c')
-rw-r--r--Src/parse.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/Src/parse.c b/Src/parse.c
index 096faa072..0f5d99cef 100644
--- a/Src/parse.c
+++ b/Src/parse.c
@@ -1610,6 +1610,11 @@ par_simple(int *complex, int nr)
} else if (tok == ENVARRAY) {
int oldcmdpos = incmdpos, n, type2;
+ /*
+ * We consider array setting complex because it can
+ * contain process substitutions, which need a valid job.
+ */
+ *complex = c = 1;
p = ecadd(0);
incmdpos = 0;
if ((type2 = strlen(tokstr) - 1) && tokstr[type2] == '+') {