https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=207302
--- Comment #1 from CTurt <[email protected]> --- Patch: https://github.com/HardenedBSD/hardenedBSD-playground/commit/1bcd4a2c6f3a256b2db03fc9421857a7f7963f34.patch It may potentially be more pleasing to use: if (strnlen(din.ia_from, ICONV_CSNMAXLEN) >= ICONV_CSNMAXLEN) But I opted for using `sizeof` on the string instead: if (strnlen(din.ia_from, sizeof(din.ia_from)) >= ICONV_CSNMAXLEN) -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "[email protected]"
