diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-01 05:17:59 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-01 05:17:59 +0000 |
commit | a6872d423f27ca69297bf4e6466ce19b6475dbcf (patch) | |
tree | a953916d6b121a8949bc7767b3dbc8962e6f95fa /regexec.c | |
parent | e54d2dfa4791be271f65522bd8896292a87cdd6f (diff) | |
download | perl-a6872d423f27ca69297bf4e6466ce19b6475dbcf.tar.gz |
The Malformed UTF-8 Heisenbug seen by Merijn and NickC
I got it in Tru64 + ithreads but only without -g, took
some debugging by printf (which was no fun either since
adding some debug printfs hid the error)
p4raw-id: //depot/perl@14511
Diffstat (limited to 'regexec.c')
-rw-r--r-- | regexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1043,7 +1043,7 @@ S_find_byclass(pTHX_ regexp * prog, regnode *c, char *s, char *strend, char *sta if ( f != c && (f == c1 || f == c2) && (ln == foldlen || - !ibcmp_utf8((char *)foldbuf, + !ibcmp_utf8((char *) foldbuf, (char **)0, foldlen, do_utf8, m, (char **)0, ln, UTF)) |