This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
EXACT correction attempt. Continued in #12863.
authorJarkko Hietaniemi <jhi@iki.fi>
Mon, 5 Nov 2001 23:24:24 +0000 (23:24 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Mon, 5 Nov 2001 23:24:24 +0000 (23:24 +0000)
p4raw-id: //depot/perl@12861

regexec.c

index b20e15d..98fcb65 100644 (file)
--- a/regexec.c
+++ b/regexec.c
@@ -2211,7 +2211,7 @@ S_regmatch(pTHX_ regnode *prog)
                            sayNO;
                        if (*((U8*)s) != utf8_to_uvchr((U8*)l, &len))
                            sayNO;
-                       s++;
+                       s += len;
                        l += len;
                    }
                else
@@ -2220,7 +2220,7 @@ S_regmatch(pTHX_ regnode *prog)
                            sayNO;
                        if (*((U8*)l) != utf8_to_uvchr((U8*)s, &len))
                            sayNO;
-                       s += len;
+                       s++;
                        l++;
                    }
                locinput = l;