From 6c761d9c9c9271145dccec5103e8fdc4fde64e9d Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Sat, 13 Sep 2008 23:37:05 +0000 Subject: * varobj.c (varobj_set_display_format): Use xfree. * tracepoint.c (stringify_collection_list): Use xfree. * remote-fileio.c (remote_fileio_reset): Use xfree. * mipsread.c (read_alphacoff_dynamic_symtab): Use xfree. * dfp.c (decimal_from_floating): Use xfree, xstrprintf. Don't use asprintf. * cp-support.c (mangled_name_to_comp): Use xfree. --- gdb/dfp.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'gdb/dfp.c') diff --git a/gdb/dfp.c b/gdb/dfp.c index 9816d27..bbaf9aa 100644 --- a/gdb/dfp.c +++ b/gdb/dfp.c @@ -235,16 +235,12 @@ void decimal_from_floating (struct value *from, gdb_byte *to, int len) { char *buffer; - int ret; - ret = asprintf (&buffer, "%.30" DOUBLEST_PRINT_FORMAT, - value_as_double (from)); - if (ret < 0) - error (_("Error in memory allocation for conversion to decimal float.")); + buffer = xstrprintf ("%.30" DOUBLEST_PRINT_FORMAT, value_as_double (from)); decimal_from_string (to, len, buffer); - free (buffer); + xfree (buffer); } /* Converts a decimal float of LEN bytes to a double value. */ -- cgit v1.1