Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions regexec.c
Original file line number Diff line number Diff line change
Expand Up @@ -6273,8 +6273,8 @@ S_isWB(pTHX_ WB_enum previous,
/* Here 'matched' is true if the DFA matched the input. If so,
* [index+1] contains the value to return */
if (matched) {
assert(index+1 < C_ARRAY_LENGTH(WB_dfa_table));
return WB_dfa_table[index+1];
assert(index+1u < C_ARRAY_LENGTH(WB_dfa_table));
return WB_dfa_table[index+1u];
}

/* Here, it didn't match. In [index+2] is stored the index into the
Expand Down
Loading