From: Kevin Buettner Date: Tue, 27 Mar 2001 06:23:25 +0000 (+0000) Subject: * solib-aix5.c (build_so_lib_from_mapfile): Fix xasprintf() usage. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=224d8953bf0a0d8932f48cab92e372b5ec1ac01f;p=binutils-gdb.git * solib-aix5.c (build_so_lib_from_mapfile): Fix xasprintf() usage. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f9294498343..56633d812f7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -5,6 +5,8 @@ (ia64_get_saved_register): Use alloca() to allocate register buffers. + * solib-aix5.c (build_so_lib_from_mapfile): Fix xasprintf() usage. + 2001-03-26 Kevin Buettner * proc-utils.h (procfs_ctl_t): New typedef. diff --git a/gdb/solib-aix5.c b/gdb/solib-aix5.c index 9207c214490..0d908770d8b 100644 --- a/gdb/solib-aix5.c +++ b/gdb/solib-aix5.c @@ -193,13 +193,14 @@ build_so_list_from_mapfile (int pid, long match_mask, long match_val) { int mapbuf_allocation_size = 8192; - char map_pathname[64]; + char *map_pathname; int map_fd; /* Open the map file */ - xasprintf (map_pathname, "/proc/%d/map", pid); + xasprintf (&map_pathname, "/proc/%d/map", pid); map_fd = open (map_pathname, O_RDONLY); + free (map_pathname); if (map_fd < 0) return 0;