about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2003-05-22 10:11:00 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2003-05-22 10:11:00 +0000
commit46557b1e1c5dbfbc22e09bffb405b7f89e6cbc48 (patch)
tree33e8aca7e963c3adae8d52abf111d7a5177f5779 /Src
parentf473fac9468fbfc0e241aca73a8fdafcf73987ab (diff)
downloadzsh-46557b1e1c5dbfbc22e09bffb405b7f89e6cbc48.tar.gz
zsh-46557b1e1c5dbfbc22e09bffb405b7f89e6cbc48.tar.xz
zsh-46557b1e1c5dbfbc22e09bffb405b7f89e6cbc48.zip
18569: pointer error with ${(on)...}
Diffstat (limited to 'Src')
-rw-r--r--Src/subst.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/subst.c b/Src/subst.c
index 89ecbab7a..a84bfbd74 100644
--- a/Src/subst.c
+++ b/Src/subst.c
@@ -554,7 +554,7 @@ nstrpcmp(const void *a, const void *b)
     cmp = (int)STOUC(*c) - (int)STOUC(*d);
 #endif
     if (idigit(*c) || idigit(*d)) {
-	for (; c > *(char **)b && idigit(c[-1]); c--, d--);
+	for (; c > *(char **)a && idigit(c[-1]); c--, d--);
 	if (idigit(*c) && idigit(*d)) {
 	    while (*c == '0')
 		c++;