You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
regexec: do index arithmetic/comparison in unsigned mode
Otherwise gcc warns when building:
In file included from perl.h:4229,
from regexec.c:76:
regexec.c: In function ‘S_isWB’:
regexec.c:6276:28: warning: comparison of integer expressions of different signedness: ‘int’ and ‘long unsigned int’ [-Wsign-compare]
6276 | assert(index+1 < C_ARRAY_LENGTH(WB_dfa_table));
| ^
Fixes#23760.
0 commit comments