mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +03:00
minor refactoring and CHANGES update
This commit is contained in:
parent
fb01ad94ef
commit
5dfc0a256a
2
CHANGES
2
CHANGES
@ -1,6 +1,8 @@
|
|||||||
v3.x.y - YYYY-MMM-DD (to be released)
|
v3.x.y - YYYY-MMM-DD (to be released)
|
||||||
-------------------------------------
|
-------------------------------------
|
||||||
|
|
||||||
|
- Add JIT support for PCRE2
|
||||||
|
[Issue #2791 - @wfjsw, @airween, @FireBurn, @martinhsv]
|
||||||
- Support comments in ipMatchFromFile file via '#' token
|
- Support comments in ipMatchFromFile file via '#' token
|
||||||
[Issue #2554 - @tomsommer, @martinhsv]
|
[Issue #2554 - @tomsommer, @martinhsv]
|
||||||
- Use name package name libmaxminddb with pkg-config
|
- Use name package name libmaxminddb with pkg-config
|
||||||
|
@ -39,12 +39,8 @@ class VerifyCC : public Operator {
|
|||||||
explicit VerifyCC(std::unique_ptr<RunTimeString> param)
|
explicit VerifyCC(std::unique_ptr<RunTimeString> param)
|
||||||
: Operator("VerifyCC", std::move(param)),
|
: Operator("VerifyCC", std::move(param)),
|
||||||
#if WITH_PCRE2
|
#if WITH_PCRE2
|
||||||
m_pc(NULL)
|
m_pc(NULL),
|
||||||
{
|
m_pcje(PCRE2_ERROR_JIT_BADOPTION) { }
|
||||||
#if WITH_PCRE2
|
|
||||||
m_pcje = PCRE2_ERROR_JIT_BADOPTION;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
#else
|
#else
|
||||||
m_pc(NULL),
|
m_pc(NULL),
|
||||||
m_pce(NULL) { }
|
m_pce(NULL) { }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user