mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-04 12:52:15 +00:00
Fully back out r302594 case 2) since overflow may happens.
This commit is contained in:
parent
817c040c3f
commit
8e0303b03b
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=302711
@ -266,7 +266,7 @@ main(int argc, char **argv)
|
||||
*/
|
||||
s2.str = argv[1];
|
||||
s2.state = NORMAL;
|
||||
for (cnt = 0; cnt <= WINT_MAX; cnt++) {
|
||||
for (cnt = 0; cnt < WINT_MAX; cnt++) {
|
||||
if (Cflag && !iswrune(cnt))
|
||||
continue;
|
||||
if (cmap_lookup(map, cnt) == OOBCH) {
|
||||
|
Loading…
Reference in New Issue
Block a user