* readelf.c (dump_section): Don't display DEL characters.
This commit is contained in:
parent
36d86913b5
commit
9376f0c73d
2 changed files with 5 additions and 1 deletions
|
@ -6115,7 +6115,7 @@ dump_section (Elf_Internal_Shdr *section, FILE *file)
|
|||
for (j = 0; j < lbytes; j++)
|
||||
{
|
||||
k = data[j];
|
||||
if (k >= ' ' && k < 0x80)
|
||||
if (k >= ' ' && k < 0x7f)
|
||||
printf ("%c", k);
|
||||
else
|
||||
printf (".");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue