We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1550e30 commit 37d3a20Copy full SHA for 37d3a20
src/utils/regex.cc
@@ -291,7 +291,7 @@ int Regex::search(const std::string& s, SMatch *match) const {
291
0, 0, match_data, NULL) > 0;
292
}
293
294
- if (m_pcje != 0 || rc == PCRE2_ERROR_JIT_STACKLIMIT) {
+ if (m_pcje != 0 || ret == PCRE2_ERROR_JIT_STACKLIMIT) {
295
ret = pcre2_match(m_pc, pcre2_s, s.length(),
296
0, PCRE2_NO_JIT, match_data, NULL) > 0;
297
0 commit comments