[Bug #19587] Fix reset_match_cache arguments

This commit is contained in:
Nobuyoshi Nakada 2023-04-12 14:54:26 +09:00
parent 1b697d7cb5
commit 0ac3f2c20e
Notes: git 2023-04-12 09:35:57 +00:00
2 changed files with 9 additions and 1 deletions

View file

@ -3480,7 +3480,7 @@ match_at(regex_t* reg, const UChar* str, const UChar* end,
default:
goto unexpected_bytecode_error;
}
reset_match_cache(reg, addr, pbegin, (long)(s - str), msa->match_cache, msa->cache_index_table, msa->num_cache_table ,msa->num_cache_opcode);
reset_match_cache(reg, addr, pbegin, (long)(s - str), msa->match_cache, msa->cache_index_table, msa->num_cache_opcode, msa->num_cache_table);
}
# endif
}