diff options
author | Kevin Buettner <kevinb@redhat.com> | 2001-03-27 10:03:41 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2001-03-27 10:03:41 +0000 |
commit | ed817e6830609fe4ea2cf4c1f5060f6180b016c9 (patch) | |
tree | 6920cdffd81963f2b610ea15fda3c98eec9734a5 /gdb/solib-aix5.c | |
parent | b75e0a6b90ee142ce7763895b6ca69d18e34f96d (diff) | |
download | gdb-ed817e6830609fe4ea2cf4c1f5060f6180b016c9.zip gdb-ed817e6830609fe4ea2cf4c1f5060f6180b016c9.tar.gz gdb-ed817e6830609fe4ea2cf4c1f5060f6180b016c9.tar.bz2 |
* solib-aix5.c (build_so_lib_from_mapfile): Use xfree() instead
of free().
Diffstat (limited to 'gdb/solib-aix5.c')
-rw-r--r-- | gdb/solib-aix5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/solib-aix5.c b/gdb/solib-aix5.c index 0d90877..4fad003 100644 --- a/gdb/solib-aix5.c +++ b/gdb/solib-aix5.c @@ -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; |