mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
Increase size of string buffer used to hold printed versions of timestamps.
binutils* readelf.c (dynamic_section_mips_val): Increase size of timebuf. (process_mips_specific): Likewise. (process_gnu_liblist): Likewise.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2016-06-22 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* readelf.c (dynamic_section_mips_val): Increase size of timebuf.
|
||||||
|
(process_mips_specific): Likewise.
|
||||||
|
(process_gnu_liblist): Likewise.
|
||||||
|
|
||||||
2016-06-21 Graham Markall <graham.markall@embecosm.com>
|
2016-06-21 Graham Markall <graham.markall@embecosm.com>
|
||||||
|
|
||||||
* readelf.c (decode_ARC_machine_flags): Remove E_ARC_MACH_NPS400
|
* readelf.c (decode_ARC_machine_flags): Remove E_ARC_MACH_NPS400
|
||||||
|
@ -8711,7 +8711,7 @@ dynamic_section_mips_val (Elf_Internal_Dyn * entry)
|
|||||||
|
|
||||||
case DT_MIPS_TIME_STAMP:
|
case DT_MIPS_TIME_STAMP:
|
||||||
{
|
{
|
||||||
char timebuf[20];
|
char timebuf[128];
|
||||||
struct tm * tmp;
|
struct tm * tmp;
|
||||||
time_t atime = entry->d_un.d_val;
|
time_t atime = entry->d_un.d_val;
|
||||||
|
|
||||||
@ -14489,7 +14489,7 @@ process_mips_specific (FILE * file)
|
|||||||
{
|
{
|
||||||
Elf32_Lib liblist;
|
Elf32_Lib liblist;
|
||||||
time_t atime;
|
time_t atime;
|
||||||
char timebuf[20];
|
char timebuf[128];
|
||||||
struct tm * tmp;
|
struct tm * tmp;
|
||||||
|
|
||||||
liblist.l_name = BYTE_GET (elib[cnt].l_name);
|
liblist.l_name = BYTE_GET (elib[cnt].l_name);
|
||||||
@ -15143,7 +15143,7 @@ process_gnu_liblist (FILE * file)
|
|||||||
{
|
{
|
||||||
Elf32_Lib liblist;
|
Elf32_Lib liblist;
|
||||||
time_t atime;
|
time_t atime;
|
||||||
char timebuf[20];
|
char timebuf[128];
|
||||||
struct tm * tmp;
|
struct tm * tmp;
|
||||||
|
|
||||||
liblist.l_name = BYTE_GET (elib[cnt].l_name);
|
liblist.l_name = BYTE_GET (elib[cnt].l_name);
|
||||||
|
Reference in New Issue
Block a user