summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2017-11-16 18:00:54 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2017-11-16 18:00:54 +0000
commit22f62c95b3269f8a17e90283541e33c1f6dcaab9 (patch)
tree0e2e3685ec38c717c22822c7adeea7f384cc71ef /ChangeLog
parentbfd4f2b52faba20be338e06ac23cb1061ec4c777 (diff)
downloadpcre-22f62c95b3269f8a17e90283541e33c1f6dcaab9.tar.gz
Fix caseless "not" bug for wide character in DFA matching when UCP not defined.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1714 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 6598469..bcd0fc4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,6 +16,11 @@ processing files with the -r option, and also (some very odd code) truncating
path names to 512 characters. There is now a check on the absolute length of
full path file names, which may be up to 2047 characters long.
+4. Using pcre_dfa_exec(), in UTF mode when UCP support was not defined, there
+was the possibility of a false positive match when caselessly matching a "not
+this character" item such as [^\x{1234}] (with a code point greater than 127)
+because the "other case" variable was not being initialized.
+
Version 8.41 05-July-2017
-------------------------