mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +08:00
* solib-aix5.c (build_so_lib_from_mapfile): Use xfree() instead
of free().
This commit is contained in:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user