diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2020-05-05 20:33:10 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2020-05-05 20:33:10 +0300 |
commit | 2c3c851d2cba73825f81cd06220138b15c17ae4d (patch) | |
tree | 4130cf52868c41beb3c242ad229031cca73d7e1c /pcre/ChangeLog | |
parent | 474290540a829edcc6a74be8c354053f330bf5de (diff) | |
parent | 8648b9bed86e9f52c027daec760d6ab5ce52e889 (diff) | |
download | mariadb-git-2c3c851d2cba73825f81cd06220138b15c17ae4d.tar.gz |
Merge 10.3 into 10.4
Diffstat (limited to 'pcre/ChangeLog')
-rw-r--r-- | pcre/ChangeLog | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/pcre/ChangeLog b/pcre/ChangeLog index 3973337fe35..864ce2c3574 100644 --- a/pcre/ChangeLog +++ b/pcre/ChangeLog @@ -5,6 +5,35 @@ Note that the PCRE 8.xx series (PCRE1) is now in a bugfix-only state. All development is happening in the PCRE2 10.xx series. +Version 8.44 12 February-2020 +----------------------------- + +1. Setting --enable-jit=auto for an out-of-tree build failed because the +source directory wasn't in the search path for AC_TRY_COMPILE always. Patch +from Ross Burton. + +2. Applied a patch from Michael Shigorin to fix 8.43 build on e2k arch +with lcc compiler (EDG frontend based); the problem it fixes is: + + lcc: "pcrecpp.cc", line 74: error: declaration aliased to undefined entity + "_ZN7pcrecpp2RE6no_argE" [-Werror] + +3. Change 2 for 8.43 omitted (*LF) from the list of start-of-pattern items. Now +added. + +4. Fix ARMv5 JIT improper handling of labels right after a constant pool. + +5. Small patch to pcreposix.c to set the erroroffset field to -1 immediately +after a successful compile, instead of at the start of matching to avoid a +sanitizer complaint (regexec is supposed to be thread safe). + +6. Check the size of the number after (?C as it is read, in order to avoid +integer overflow. + +7. Tidy up left shifts to avoid sanitize warnings; also fix one NULL deference +in pcretest. + + Version 8.43 23-February-2019 ----------------------------- |