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:
parent
435962327a
commit
eeb06bf230
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user