NetBSD/usr.bin/seq
dholland d6986f611b Rerun valid_format() both before and after unescaping the format
string, in case the format string contains printf conversions
assembled from escape sequences.

A better approach might be to adjust the unescape logic to avoid
generating printf conversions (e.g. convert \x25 to %% instead of %)
but that's somewhat problematic and it's not really worth taking the
trouble.

Running valid_format() only after unescaping would also be somewhat
tidier but makes printing the invalid format string problematic,
because the unescape logic runs in place.

None of these cases are really worth worrying about in detail, but now
at least they don't result in SIGSEGV.

Related to PR 43355.
2010-05-27 08:40:19 +00:00
..
Makefile
seq.1 Fix valid_format() to be more careful about allowing only valid printf 2010-05-27 08:30:35 +00:00
seq.c Rerun valid_format() both before and after unescaping the format 2010-05-27 08:40:19 +00:00