From 46557b1e1c5dbfbc22e09bffb405b7f89e6cbc48 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Thu, 22 May 2003 10:11:00 +0000 Subject: 18569: pointer error with ${(on)...} --- ChangeLog | 3 +++ Src/subst.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 316f9bbdb..c996cb436 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2003-05-22 Peter Stephenson + * 18569: Src/subst.c: error with numeric sorting of parameters; + owing to typo pointers could become corrupt. + * 18559, 18562: README, Doc/Zsh/mod_socket.yo, Doc/Zsh/mod_tcp.yo, Doc/Zsh/zle.yo, Src/zsh.h, Src/Modules/files.c, Src/Modules/socket.c, Src/Modules/tcp.c Src/Zle/zle_keymap.c 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++; -- cgit 1.4.1