about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@zsh.org>2017-03-23 09:35:20 +0000
committerPeter Stephenson <pws@zsh.org>2017-03-23 09:35:20 +0000
commit086656241c3ccca377474bfea1cb269ac9a67d60 (patch)
tree14df959ce75426ebd08c44f028b8950a2bffc2b9
parent20d464944b8599e28044664a9adc8f349e3da5d4 (diff)
downloadzsh-086656241c3ccca377474bfea1cb269ac9a67d60.tar.gz
zsh-086656241c3ccca377474bfea1cb269ac9a67d60.tar.xz
zsh-086656241c3ccca377474bfea1cb269ac9a67d60.zip
22601: Fix for parameter substitution pattern matches.
It was not possible to math against a zero-length string in
some cases.
-rw-r--r--ChangeLog5
-rw-r--r--Src/glob.c8
-rw-r--r--Test/D04parameter.ztst10
3 files changed, 21 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 8cba5b571..ce95e6ed8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-03-23  Peter Stephenson  <p.stephenson@samsung.com>
+
+	* 22601: Src/glob.c, Test/D04parameter.ztst: problem matching
+	pattern against zero-length string in parameter substitutions.
+
 2017-03-21  Peter Stephenson  <p.stephenson@samsung.com>
 
 	* 40875 (Martin Krafft): change description of REC_EXACT option.
diff --git a/Src/glob.c b/Src/glob.c
index 0fcb4e122..9ac0ae66c 100644
--- a/Src/glob.c
+++ b/Src/glob.c
@@ -2969,7 +2969,7 @@ igetmatch(char **sp, Patprog p, int fl, int n, char *replstr,
 	    do {
 		/* loop over all matches for global substitution */
 		matched = 0;
-		for (; t < send; ioff++) {
+		for (; t <= send; ioff++) {
 		    /* Find the longest match from this position. */
 		    set_pat_start(p, t-s);
 		    if (pattrylen(p, t, umlen, 0, &patstralloc, ioff)) {
@@ -3018,15 +3018,19 @@ igetmatch(char **sp, Patprog p, int fl, int n, char *replstr,
 			 * which is already marked for replacement.
 			 */
 			matched = 1;
+			if (t == send)
+			    break;
 			while (t < mpos) {
 			    ioff++;
 			    umlen -= iincchar(&t, send - t);
 			}
 			break;
 		    }
+		    if (t == send)
+			break;
 		    umlen -= iincchar(&t, send - t);
 		}
-	    } while (matched);
+	    } while (matched && t < send);
 	    /*
 	     * check if we can match a blank string, if so do it
 	     * at the start.  Goodness knows if this is a good idea
diff --git a/Test/D04parameter.ztst b/Test/D04parameter.ztst
index cb9d50dc8..99f7dd91a 100644
--- a/Test/D04parameter.ztst
+++ b/Test/D04parameter.ztst
@@ -2148,3 +2148,13 @@ F:behavior, see http://austingroupbugs.net/view.php?id=888
     [[ ${-} = [[:alnum:]]## ]] || print Failed 2
   }
 0:$- expansion correctly handles Dash token
+
+  a=(1 "" 3)
+  print -rl -- "${(@)a//*/x}"
+  a=""
+  print -rl -- "${(@)a//*/y}"
+0:Zero-length string match in parameter substitution
+>x
+>x
+>x
+>y