PR binutils/11742
* readelf.c (get_archive_member_name): Do not read beyond the end of the ar_name field.
This commit is contained in:
parent
51adeb0f12
commit
2e49a6d010
2 changed files with 8 additions and 1 deletions
|
@ -12556,7 +12556,8 @@ get_archive_member_name (struct archive_info * arch,
|
|||
|
||||
/* We have a normal (short) name. */
|
||||
j = 0;
|
||||
while ((arch->arhdr.ar_name[j] != '/') && (j < 16))
|
||||
while ((arch->arhdr.ar_name[j] != '/')
|
||||
&& (j < sizeof (arch->arhdr.ar_name) - 1))
|
||||
j++;
|
||||
arch->arhdr.ar_name[j] = '\0';
|
||||
return arch->arhdr.ar_name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue