Author: Juergen Leising
Date:
To: pcre-dev
Subject: [pcre-dev] PCRE_ERROR_INTERNAL with possessive quantifiers after
UTF-8properties
Hello,
I just got "An unexpected internal error has occurred." with
the following patterns:
re> /\p{Zl}{2,3}+/8
data> \xe2\x80\xa8\xe2\x80\xa8
Error -14
re> /\p{Lu}{3}+/8
data> \x{10a5}\x{10a5}\x{10a5}
Error -14
re> /\pL{2}+/8
data> \xce\xa4\xce\xa4
Error -14
re> /\p{Cc}{2}+/8
data> \xc2\x8f\xc2\x8f
Error -14
Are the multibytes used here wrong or is
this a bug in pcre-7.4?
Best regards,
Juergen