From 3ecda4574edb38ad12fb491ccaf6d9b0caa3a07a Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Thu, 17 Mar 2005 22:07:42 +0000 Subject: [PATCH] * corelow.c (get_core_register_section): Replace usage of sprintf and strcpy with xstrprintf and xstrdup. --- gdb/ChangeLog | 3 +++ gdb/corelow.c | 7 ++++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 91ee65ed480..3c62956c5fe 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,8 @@ 2005-03-17 Mark Kettenis + * 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. diff --git a/gdb/corelow.c b/gdb/corelow.c index ebc068fb88a..a78f71a147e 100644 --- a/gdb/corelow.c +++ b/gdb/corelow.c @@ -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) -- 2.30.2