From: kettenis Date: Mon, 8 Apr 2002 21:53:00 +0000 (+0000) Subject: * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions): X-Git-Tag: w32api-1_5~1475 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=5a414aafa834f7feb5e5153c1cb1e735303f9d11;p=pf3gnuchains%2Fpf3gnuchains4x.git * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions): s/asprintf/xasprintf/. (fbsd_make_corefile_notes): s/strdup/xstrdup/. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7d50840755..d8b337dbd4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2002-04-07 Mark Kettenis + + * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions): + s/asprintf/xasprintf/. + (fbsd_make_corefile_notes): s/strdup/xstrdup/. + 2002-04-07 Andrew Cagney I believe Jeff Law denies responsability for this one: diff --git a/gdb/fbsd-proc.c b/gdb/fbsd-proc.c index 91746d6178..c68238dbec 100644 --- a/gdb/fbsd-proc.c +++ b/gdb/fbsd-proc.c @@ -35,7 +35,7 @@ child_pid_to_exec_file (int pid) char *path; char *buf; - asprintf (&path, "/proc/%d/file", pid); + xasprintf (&path, "/proc/%d/file", pid); buf = xcalloc (MAXPATHLEN, sizeof (char)); make_cleanup (xfree, path); make_cleanup (xfree, buf); @@ -84,7 +84,7 @@ fbsd_find_memory_regions (int (*func) (CORE_ADDR, char protection[4]; int read, write, exec; - asprintf (&mapfilename, "/proc/%ld/map", (long) pid); + xasprintf (&mapfilename, "/proc/%ld/map", (long) pid); mapfile = fopen (mapfilename, "r"); if (mapfile == NULL) error ("Couldn't open %s\n", mapfilename); @@ -145,7 +145,7 @@ fbsd_make_corefile_notes (bfd *obfd, int *note_size) if (get_exec_file (0)) { char *fname = strrchr (get_exec_file (0), '/') + 1; - char *psargs = strdup (fname); + char *psargs = xstrdup (fname); if (get_inferior_args ()) psargs = reconcat (psargs, psargs, " ", get_inferior_args (), NULL);