summaryrefslogtreecommitdiff
path: root/gdb/progspace.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2020-10-29 15:04:33 -0600
committerTom Tromey <tom@tromey.com>2020-10-29 15:04:41 -0600
commit8407f91bd388952721efa7f12c75bf94324dc506 (patch)
tree1bce9f269d8dacd92fb546d909faf53e64402dda /gdb/progspace.c
parent5008b3b2ebb6859212a3fd6a716dc4278d9b14bb (diff)
downloadbinutils-gdb-8407f91bd388952721efa7f12c75bf94324dc506.tar.gz
Remove call to exec_close
There's no need to call exec_close from ~progspace, because that method just does some cleanup that's already going to be done during destruction. This patch removes the call. gdb/ChangeLog 2020-10-29 Tom Tromey <tom@tromey.com> * progspace.c (program_space::~program_space): Don't call exec_close.
Diffstat (limited to 'gdb/progspace.c')
-rw-r--r--gdb/progspace.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/progspace.c b/gdb/progspace.c
index 70c0f7ec2a2..0e7c8d2428e 100644
--- a/gdb/progspace.c
+++ b/gdb/progspace.c
@@ -147,7 +147,6 @@ program_space::~program_space ()
breakpoint_program_space_exit (this);
no_shared_libraries (NULL, 0);
- exec_close ();
free_all_objfiles ();
/* Defer breakpoint re-set because we don't want to create new
locations for this pspace which we're tearing down. */