aboutsummaryrefslogtreecommitdiff
path: root/gdb/solib.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2011-06-30 19:29:55 +0000
committerTom Tromey <tromey@redhat.com>2011-06-30 19:29:55 +0000
commitf748fb408892764f17e4269508a2af6f613909fd (patch)
tree51de58f49904587d43a0be20f8c4688808d1db3b /gdb/solib.c
parent3bb47e8bce4c147142b298c5c23368ba189105bc (diff)
downloadgdb-f748fb408892764f17e4269508a2af6f613909fd.zip
gdb-f748fb408892764f17e4269508a2af6f613909fd.tar.gz
gdb-f748fb408892764f17e4269508a2af6f613909fd.tar.bz2
* varobj.c (varobj_create): Call do_cleanups on early exit path.
* valops.c (find_overload_match): Call do_cleanups on early exit path. * solib.c (solib_find): Call do_cleanups on early exit path.
Diffstat (limited to 'gdb/solib.c')
-rw-r--r--gdb/solib.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/solib.c b/gdb/solib.c
index a9f46e0..94f8f13 100644
--- a/gdb/solib.c
+++ b/gdb/solib.c
@@ -254,6 +254,7 @@ solib_find (char *in_pathname, int *fd)
if (remote_filename_p (temp_pathname))
{
*fd = -1;
+ do_cleanups (old_chain);
return temp_pathname;
}