diff options
author | Andreas König <a.koenig@mind.de> | 2002-01-09 12:12:37 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-09 13:00:09 +0000 |
commit | a0804c9e85747bb3f67fb765c9f7a6e0cb9e18d1 (patch) | |
tree | f092cfc0538cfa03dd40652b6079c36e750d12a8 /regexec.c | |
parent | 302427c1e87e8d5309107114c84a87ad6357c6b9 (diff) | |
download | perl-a0804c9e85747bb3f67fb765c9f7a6e0cb9e18d1.tar.gz |
Re: Weird Malformed warning in bleadperl
Message-ID: <m3itabbzoq.fsf@anima.de>
p4raw-id: //depot/perl@14148
Diffstat (limited to 'regexec.c')
-rw-r--r-- | regexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3879,7 +3879,7 @@ S_regrepeat(pTHX_ regnode *p, I32 max) case SANY: if (do_utf8) { loceol = PL_regeol; - while (scan < loceol) { + while (scan < loceol && hardcount < max) { scan += UTF8SKIP(scan); hardcount++; } |