* solib-aix5.c (build_so_lib_from_mapfile): Use xfree() instead

of free().
This commit is contained in:
Kevin Buettner 2001-03-27 10:03:41 +00:00
parent b75e0a6b90
commit ed817e6830
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-03-27 Kevin Buettner <kevinb@redhat.com>
* solib-aix5.c (build_so_lib_from_mapfile): Use xfree() instead
of free().
2001-03-27 Eli Zaretskii <eliz@is.elta.co.il>
* TODO (Cleanups): Remove the item about converting docs to GFDL.

View File

@ -200,7 +200,7 @@ build_so_list_from_mapfile (int pid, long match_mask, long match_val)
xasprintf (&map_pathname, "/proc/%d/map", pid);
map_fd = open (map_pathname, O_RDONLY);
free (map_pathname);
xfree (map_pathname);
if (map_fd < 0)
return 0;