summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2010-05-31 17:28:08 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2010-05-31 17:28:08 +0000
commite544851c5b9f813114ccb1944898b0a11284739e (patch)
treedb9cd54cdbb0d51be8c9573ba52db7fb004dfbc9 /ChangeLog
parent8791d6bb67c8f72c2ce6d07a7bcb7eba0faa16c2 (diff)
downloadpcre-e544851c5b9f813114ccb1944898b0a11284739e.tar.gz
Fix crash for property test in non-UTF-8 mode.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@529 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8325519..f1ef251 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -59,6 +59,11 @@ Version 8.10 03 May-2010
possible starting bytes for non-anchored patterns.
15. The "auto-possessify" feature of pcre_compile() now recognizes \R.
+
+16. If a repeated Unicode property match (e.g. \p{Lu}*) was used with non-UTF-8
+ input, it could crash or give wrong results if characters with values
+ greater than 0xc0 were present in the subject string. (Detail: it assumed
+ UTF-8 input when processing these items.)