aboutsummaryrefslogtreecommitdiff
path: root/gdb/solib.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2001-09-14 00:40:29 +0000
committerKevin Buettner <kevinb@redhat.com>2001-09-14 00:40:29 +0000
commit2069d78d3c80b9fa6ceef866853ce966186ee300 (patch)
tree8ff4cf31465ed077c287dc941f841aa76f7f4c70 /gdb/solib.c
parent93de26c18808f0806c956139c1b79c26f46a2368 (diff)
downloadgdb-2069d78d3c80b9fa6ceef866853ce966186ee300.zip
gdb-2069d78d3c80b9fa6ceef866853ce966186ee300.tar.gz
gdb-2069d78d3c80b9fa6ceef866853ce966186ee300.tar.bz2
Commit Ilya Golubev's clear_solib() fixes.
Diffstat (limited to 'gdb/solib.c')
-rw-r--r--gdb/solib.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/solib.c b/gdb/solib.c
index dfcca0c..c43858e 100644
--- a/gdb/solib.c
+++ b/gdb/solib.c
@@ -730,6 +730,8 @@ clear_solib (void)
{
struct so_list *so = so_list_head;
so_list_head = so->next;
+ if (so->abfd)
+ remove_target_sections (so->abfd);
free_so (so);
}