mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-18 13:23:10 +08:00
* corelow.c (get_core_register_section): Replace usage of sprintf
and strcpy with xstrprintf and xstrdup.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
2005-03-17 Mark Kettenis <kettenis@gnu.org>
|
2005-03-17 Mark Kettenis <kettenis@gnu.org>
|
||||||
|
|
||||||
|
* corelow.c (get_core_register_section): Replace usage of sprintf
|
||||||
|
and strcpy with xstrprintf and xstrdup.
|
||||||
|
|
||||||
* mips-tdep.c (mips_single_step_through_delay): Put back check for
|
* mips-tdep.c (mips_single_step_through_delay): Put back check for
|
||||||
breakpoint lost with the introduction of this function.
|
breakpoint lost with the introduction of this function.
|
||||||
|
|
||||||
|
@ -447,15 +447,16 @@ get_core_register_section (char *name,
|
|||||||
char *human_name,
|
char *human_name,
|
||||||
int required)
|
int required)
|
||||||
{
|
{
|
||||||
char section_name[100];
|
static char *section_name = NULL;
|
||||||
struct bfd_section *section;
|
struct bfd_section *section;
|
||||||
bfd_size_type size;
|
bfd_size_type size;
|
||||||
char *contents;
|
char *contents;
|
||||||
|
|
||||||
|
xfree (section_name);
|
||||||
if (PIDGET (inferior_ptid))
|
if (PIDGET (inferior_ptid))
|
||||||
sprintf (section_name, "%s/%d", name, PIDGET (inferior_ptid));
|
section_name = xstrprintf ("%s/%d", name, PIDGET (inferior_ptid));
|
||||||
else
|
else
|
||||||
strcpy (section_name, name);
|
section_name = xstrdup (name);
|
||||||
|
|
||||||
section = bfd_get_section_by_name (core_bfd, section_name);
|
section = bfd_get_section_by_name (core_bfd, section_name);
|
||||||
if (! section)
|
if (! section)
|
||||||
|
Reference in New Issue
Block a user