diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-06-28 23:59:29 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-06-28 23:59:29 +0000 |
commit | b435e160dd3606c70fee73fa1461cf26607e4d6f (patch) | |
tree | b19307c5598434fbf741b2b6c707dd43508da24a /gdb/xcoffsolib.c | |
parent | e073c4747aebd9b65de341f6201fa479e57ea275 (diff) | |
download | gdb-b435e160dd3606c70fee73fa1461cf26607e4d6f.zip gdb-b435e160dd3606c70fee73fa1461cf26607e4d6f.tar.gz gdb-b435e160dd3606c70fee73fa1461cf26607e4d6f.tar.bz2 |
2004-06-26 Andrew Cagney <cagney@gnu.org>
* xcoffsolib.c (xcoff_solib_address): Replace xasprintf with
xstrprintf.
* varobj.c (varobj_gen_name, create_child, c_name_of_child)
(c_value_of_variable): Ditto.
* utils.c (internal_vproblem): Ditto.
* solib-aix5.c (build_so_list_from_mapfile): Ditto.
* remote.c (add_packet_config_cmd): Ditto.
* remote-rdp.c (rdp_set_command_line): Ditto.
* regcache.c (regcache_dump): Ditto.
* frv-tdep.c (new_variant, new_variant): Ditto.
* fbsd-proc.c (child_pid_to_exec_file): Ditto.
(fbsd_find_memory_regions): Ditto.
* breakpoint.c (create_thread_event_breakpoint)
(create_breakpoints): Ditto.
* aix-thread.c (aix_thread_pid_to_str): Ditto.
* ada-lang.c (is_package_name): Ditto. Also delete xmalloc call.
Index: doc/ChangeLog
2004-06-26 Andrew Cagney <cagney@gnu.org>
* gdbint.texinfo (Coding): Replace xasprintf with xstrprintf.
Diffstat (limited to 'gdb/xcoffsolib.c')
-rw-r--r-- | gdb/xcoffsolib.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/xcoffsolib.c b/gdb/xcoffsolib.c index 99d2cc8..62426c9 100644 --- a/gdb/xcoffsolib.c +++ b/gdb/xcoffsolib.c @@ -48,11 +48,11 @@ xcoff_solib_address (CORE_ADDR addr) if (vp->tstart <= addr && addr < vp->tend) { xfree (buffer); - xasprintf (&buffer, "%s%s%s%s", - vp->name, - *vp->member ? "(" : "", - vp->member, - *vp->member ? ")" : ""); + buffer = xstrprintf ("%s%s%s%s", + vp->name, + *vp->member ? "(" : "", + vp->member, + *vp->member ? ")" : ""); return buffer; } return NULL; |