summaryrefslogtreecommitdiff
path: root/regex.c
diff options
context:
space:
mode:
Diffstat (limited to 'regex.c')
-rw-r--r--regex.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/regex.c b/regex.c
index 0fdf2c06f9..152eebbf6d 100644
--- a/regex.c
+++ b/regex.c
@@ -1398,6 +1398,7 @@ re_compile_pattern(pattern, size, bufp)
store_jump(fixup_jump, jump, b);
BUFPUSH(stop_memory);
BUFPUSH(stackp[-1]);
+ stackp--;
break;
case '!':
@@ -1412,13 +1413,13 @@ re_compile_pattern(pattern, size, bufp)
STORE_NUMBER(bufp->buffer+stackp[-1], b - bufp->buffer - stackp[-1] - 2);
BUFPUSH(0); /* space to hold stack pos */
BUFPUSH(0);
+ stackp--;
break;
case ':':
default:
break;
}
- stackp--;
begalt = *--stackp + bufp->buffer;
stackp--;
fixup_jump = *stackp ? *stackp + bufp->buffer - 1 : 0;