Truncate negative lengths to zero
This commit is contained in:
parent
ed3e292c7a
commit
22adaea1ee
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=326246
@ -50,6 +50,7 @@ int
|
||||
__printf_render_hexdump(struct __printf_io *io, const struct printf_info *pi, const void *const *arg)
|
||||
{
|
||||
unsigned char *p;
|
||||
int i;
|
||||
unsigned u, l, j, a;
|
||||
char buf[100], *q;
|
||||
int ret;
|
||||
@ -59,7 +60,10 @@ __printf_render_hexdump(struct __printf_io *io, const struct printf_info *pi, co
|
||||
else
|
||||
l = 16;
|
||||
p = *((unsigned char **)arg[0]);
|
||||
u = *((unsigned *)arg[1]);
|
||||
i = *((int *)arg[1]);
|
||||
if (i < 0)
|
||||
i = 0;
|
||||
u = i;
|
||||
|
||||
ret = 0;
|
||||
a = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user