init m_pcje in the constructor of verify_cc.cc

This commit is contained in:
wfjsw 2022-12-10 11:42:51 +08:00
parent 37d3a20da8
commit 54ff1ea530

View File

@ -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) { }