From: Glenn L McGrath Date: Fri, 23 Jul 2004 01:35:41 +0000 (-0000) Subject: Patch from Felipe Kellermann, "There is a call to printf using `*pr-cchar' X-Git-Tag: 1_00_rc2~22 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=eeb06bf230103440f96e4d42d869f2f3a70d869a;p=oweals%2Fbusybox.git Patch from Felipe Kellermann, "There is a call to printf using `*pr-cchar' referencing a string and using a single char, when *p <= 0x1f." --- diff --git a/libbb/dump.c b/libbb/dump.c index 30f69830b..98f004ff6 100644 --- a/libbb/dump.c +++ b/libbb/dump.c @@ -499,7 +499,7 @@ static void conv_u(PR * pr, u_char * p) /* od used nl, not lf */ if (*p <= 0x1f) { *pr->cchar = 's'; - printf(pr->fmt, list[4 * (int)(*p)]); + printf(pr->fmt, list + (4 * (int)*p)); } else if (*p == 0x7f) { *pr->cchar = 's'; printf(pr->fmt, "del");