OSDN Git Service

* solib-aix5.c (build_so_lib_from_mapfile): Use xfree() instead
authorkevinb <kevinb>
Tue, 27 Mar 2001 10:03:39 +0000 (10:03 +0000)
committerkevinb <kevinb>
Tue, 27 Mar 2001 10:03:39 +0000 (10:03 +0000)
of free().

gdb/ChangeLog
gdb/solib-aix5.c

index 5dd0410..4c77b43 100644 (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.
index 0d90877..4fad003 100644 (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;