summaryrefslogtreecommitdiff
path: root/Src/pattern.c
diff options
context:
space:
mode:
authorPeter Stephenson <pws@zsh.org>2016-10-20 10:43:52 +0100
committerPeter Stephenson <pws@zsh.org>2016-10-20 10:43:52 +0100
commitd2c9f85f59ab7e58af68c5f89b64a95ac26e1e43 (patch)
treea5a597222e99268817bf109be2a37bdb784890e7 /Src/pattern.c
parentb2d280038f97111144ce8aeb8ec293510b6b8e21 (diff)
downloadzsh-d2c9f85f59ab7e58af68c5f89b64a95ac26e1e43.tar.gz
zsh-d2c9f85f59ab7e58af68c5f89b64a95ac26e1e43.zip
39683: Update scan pointers after possible alloc.
Problem could cause next scan index to point into an invalid block when handling meta characters.
Diffstat (limited to 'Src/pattern.c')
-rw-r--r--Src/pattern.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/Src/pattern.c b/Src/pattern.c
index 4e2f2369f..158bfd560 100644
--- a/Src/pattern.c
+++ b/Src/pattern.c
@@ -669,12 +669,16 @@ patcompile(char *exp, int inflags, char **endexp)
nmeta++;
if (nmeta) {
char *oldpatout = patout;
+ ptrdiff_t pd;
patadd(NULL, 0, nmeta, 0);
/*
* Yuk.
*/
p = (Patprog)patout;
- opnd = patout + (opnd - oldpatout);
+ pd = patout - oldpatout;
+ opnd += pd;
+ pscan += pd;
+ next += pd;
dst = patout + startoff;
}