https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209661
--- Comment #4 from CTurt <ct...@hardenedbsd.org> --- That negative loop was indeed my original theory I was trying to explain, however I no longer think that this is true. In the loop `i` is compared against an unsigned value, so an unsigned comparison will be used. That is to say, a negative value of `i` is counted as a large positive value for the comparison. The result of this is that the loop condition won't be satisfied, and the array won't be indexed. -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ freebsd-bugs@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"