mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +03:00
init m_pcje in the constructor of verify_cc.cc
This commit is contained in:
parent
37d3a20da8
commit
54ff1ea530
@ -39,7 +39,12 @@ class VerifyCC : public Operator {
|
||||
explicit VerifyCC(std::unique_ptr<RunTimeString> param)
|
||||
: Operator("VerifyCC", std::move(param)),
|
||||
#if WITH_PCRE2
|
||||
m_pc(NULL) { }
|
||||
m_pc(NULL)
|
||||
{
|
||||
#if WITH_PCRE2
|
||||
m_pcje = PCRE2_ERROR_JIT_BADOPTION;
|
||||
#endif
|
||||
}
|
||||
#else
|
||||
m_pc(NULL),
|
||||
m_pce(NULL) { }
|
||||
|
Loading…
x
Reference in New Issue
Block a user