summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-12-30 23:30:56 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-12-30 23:30:56 +0000
commit92c9c481ba1637c65512c039f00553621807bfd9 (patch)
tree96da3f67d67284cca3e8e57b701cbac5b2c61f76 /utf8.c
parent2ad154feab0e255cadacb1ad90bde4145e7d573e (diff)
downloadperl-92c9c481ba1637c65512c039f00553621807bfd9.tar.gz
Make that six wrongs.
p4raw-id: //depot/perl@13966
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/utf8.c b/utf8.c
index 0453d1b763..54ab5293cc 100644
--- a/utf8.c
+++ b/utf8.c
@@ -1703,8 +1703,7 @@ Perl_ibcmp_utf8(pTHX_ const char *s1, bool u1, register I32 len1, const char *s2
else
ulen2 = 1;
if (ulen1 != ulen2
- || (ca < 256 && cb < 256 &&
- PL_fold[ca] != PL_fold[cb])
+ || (ca < 256 && cb < 256 && ca != PL_fold[cb])
|| memNE((char *)tmpbuf1, (char *)tmpbuf2, ulen1))
return 1; /* mismatch */
}