ARI fix: "xasprintf" rule.
authorPierre Muller <muller@sourceware.org>
Wed, 25 Mar 2009 22:38:46 +0000 (22:38 +0000)
committerPierre Muller <muller@sourceware.org>
Wed, 25 Mar 2009 22:38:46 +0000 (22:38 +0000)
* printcmd.c (sym_info): Replace xasprintf by xstrprintf.

gdb/ChangeLog
gdb/printcmd.c

index 83685a7..ddb8e72 100644 (file)
@@ -1,3 +1,8 @@
+2009-03-25  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       ARI fix: "xasprintf" rule.
+       * printcmd.c (sym_info): Replace xasprintf by xstrprintf.
+
 2009-03-25  Pedro Alves  <pedro@codesourcery.com>
 
        * remote.c (remote_start_remote): In non-stop mode, call
index 750244e..8403d5f 100644 (file)
@@ -1036,9 +1036,9 @@ sym_info (char *arg, int from_tty)
        /* Don't print the offset if it is zero.
           We assume there's no need to handle i18n of "sym + offset".  */
        if (offset)
-         xasprintf (&loc_string, "%s + %u", msym_name, offset);
+         loc_string = xstrprintf ("%s + %u", msym_name, offset);
        else
-         xasprintf (&loc_string, "%s", msym_name);
+         loc_string = xstrprintf ("%s", msym_name);
 
        /* Use a cleanup to free loc_string in case the user quits
           a pagination request inside printf_filtered.  */