mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Use UCHAR_MAX consistently.
This commit is contained in:
parent
9ac104e443
commit
03b59f2038
1 changed files with 1 additions and 1 deletions
|
|
@ -1949,7 +1949,7 @@ struct re_guts *g;
|
|||
/* If the character does not exist in the pattern, the jump
|
||||
* is equal to the number of characters in the pattern.
|
||||
*/
|
||||
for (ch = 0; ch < 256; ch++)
|
||||
for (ch = 0; ch < (UCHAR_MAX+1); ch++)
|
||||
g->charjump[ch] = g->mlen;
|
||||
|
||||
/* If the character does exist, compute the jump that would
|
||||
|
|
|
|||
Loading…
Reference in a new issue