summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-02-01 05:17:59 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-02-01 05:17:59 +0000
commita6872d423f27ca69297bf4e6466ce19b6475dbcf (patch)
treea953916d6b121a8949bc7767b3dbc8962e6f95fa /regexec.c
parente54d2dfa4791be271f65522bd8896292a87cdd6f (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regexec.c b/regexec.c
index 65129866f3..70d401dd63 100644
--- a/regexec.c
+++ b/regexec.c
@@ -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))