* corelow.c (get_core_register_section): Replace usage of sprintf

and strcpy with xstrprintf and xstrdup.
This commit is contained in:
Mark Kettenis 2005-03-17 22:07:42 +00:00
parent 30f725a1cf
commit 3ecda4574e
2 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,8 @@
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
breakpoint lost with the introduction of this function.

View File

@ -447,15 +447,16 @@ get_core_register_section (char *name,
char *human_name,
int required)
{
char section_name[100];
static char *section_name = NULL;
struct bfd_section *section;
bfd_size_type size;
char *contents;
xfree (section_name);
if (PIDGET (inferior_ptid))
sprintf (section_name, "%s/%d", name, PIDGET (inferior_ptid));
section_name = xstrprintf ("%s/%d", name, PIDGET (inferior_ptid));
else
strcpy (section_name, name);
section_name = xstrdup (name);
section = bfd_get_section_by_name (core_bfd, section_name);
if (! section)