2007-10-15 Pierre Muller <muller@ics.u-strasbg.fr>
authorPierre Muller <muller@sourceware.org>
Mon, 15 Oct 2007 15:22:23 +0000 (15:22 +0000)
committerPierre Muller <muller@sourceware.org>
Mon, 15 Oct 2007 15:22:23 +0000 (15:22 +0000)
* cp-abi.c (set_cp_abi_as_auto_default): ARI fix:
Replace xasprintf by xstrprintf.
symfile-mem.c (add_vsyscall_page): Ditto.

gdb/ChangeLog
gdb/cp-abi.c
gdb/symfile-mem.c

index 586e4d89ebc983488519739171afc195fcbbebe5..4358bd0e161fd9b468aef50bb6bfd60121268770 100644 (file)
@@ -1,3 +1,9 @@
+2007-10-15  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * cp-abi.c (set_cp_abi_as_auto_default): ARI fix:
+       Replace xasprintf by xstrprintf.
+       symfile-mem.c (add_vsyscall_page): Ditto.
+
 2007-10-12  Ulrich Weigand  <uweigand@de.ibm.com>
 
        * ia64-linux-nat.c (ia64_register_addr): Add gdbarch parameter,
index ced1a96b965b98b35a2c7666eccf6a5cab682b9a..b4b5c31449eddab0ca9e14d65efe694a3abcee6e 100644 (file)
@@ -193,10 +193,10 @@ set_cp_abi_as_auto_default (const char *short_name)
   auto_cp_abi = *abi;
 
   auto_cp_abi.shortname = "auto";
-  xasprintf (&new_longname, "currently \"%s\"", abi->shortname);
+  new_longname = xstrprintf ("currently \"%s\"", abi->shortname);
   auto_cp_abi.longname = new_longname;
 
-  xasprintf (&new_doc, "Automatically selected; currently \"%s\"",
+  new_doc = xstrprintf ("Automatically selected; currently \"%s\"",
             abi->shortname);
   auto_cp_abi.doc = new_doc;
 
index 269a14d55137f342b24bd9c91f92464d659a4c4c..65f5623eacf90d515e931e8f5a455158ceadb31f 100644 (file)
@@ -196,7 +196,7 @@ try using the \"file\" command first."));
        }
       args.bfd = bfd;
       args.sysinfo_ehdr = sysinfo_ehdr;
-      xasprintf (&args.name, "system-supplied DSO at 0x%s",
+      args.name = xstrprintf ("system-supplied DSO at 0x%s",
                 paddr_nz (sysinfo_ehdr));
       /* Pass zero for FROM_TTY, because the action of loading the
         vsyscall DSO was not triggered by the user, even if the user
This page took 0.046804 seconds and 4 git commands to generate.