osmo_hexdump: Fix segfault when input is too long.
authorHolger Hans Peter Freyther <zecke@selfish.org>
Fri, 15 Jul 2011 14:07:23 +0000 (16:07 +0200)
committerHolger Hans Peter Freyther <zecke@selfish.org>
Fri, 15 Jul 2011 14:07:23 +0000 (16:07 +0200)
In snprinftf the size is a size_t (unsigned) in case we want
to write more than we have available, len_remain will be < 0.

This was spotted while removing hexdump from simtrace and comparing
it to our implementation.

int snprintf(char *str, size_t size, const char *format, ...);


No differences found