Patch from Felipe Kellermann, "There is a call to printf using `*pr-cchar'

referencing a string and using a single char, when *p <= 0x1f."
This commit is contained in:
Glenn L McGrath 2004-07-23 01:35:41 +00:00
parent 435962327a
commit eeb06bf230

View File

@ -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");