change pcre ovec size to multiple of 3

This commit is contained in:
Günter Obiltschnig 2018-02-17 20:54:18 +01:00
parent e4ed928717
commit 39480503ee

View File

@ -26,7 +26,7 @@
namespace Poco {
const int RegularExpression::OVEC_SIZE = 128;
const int RegularExpression::OVEC_SIZE = 126; // must be multiple of 3
RegularExpression::RegularExpression(const std::string& pattern, int options, bool study): _pcre(0), _extra(0)