diff options
author | Tom Tromey <tromey@redhat.com> | 2013-05-30 17:29:06 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-05-30 17:29:06 +0000 |
commit | c27e16e3f1dcf904e09c4d725bc6dbde7e9ef172 (patch) | |
tree | e1cb758fbbb879d70b63fe038ea264caea71a6af /gdb | |
parent | 5ae85e4448395edaa514e8fccb508887472166a0 (diff) | |
download | gdb-c27e16e3f1dcf904e09c4d725bc6dbde7e9ef172.zip gdb-c27e16e3f1dcf904e09c4d725bc6dbde7e9ef172.tar.gz gdb-c27e16e3f1dcf904e09c4d725bc6dbde7e9ef172.tar.bz2 |
fix cp-namespace.c
cp_lookup_symbol_imports_or_template could return without
running cleanups.
* cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
do_cleanups on all return paths.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/cp-namespace.c | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 30b2bb0..55df48c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2013-05-30 Tom Tromey <tromey@redhat.com> + * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call + do_cleanups on all return paths. + +2013-05-30 Tom Tromey <tromey@redhat.com> + * top.c (execute_command): Discard 'cleanup_if_error' cleanups. 2013-05-30 Tom Tromey <tromey@redhat.com> diff --git a/gdb/cp-namespace.c b/gdb/cp-namespace.c index add4ccb..792ed48 100644 --- a/gdb/cp-namespace.c +++ b/gdb/cp-namespace.c @@ -499,7 +499,10 @@ cp_lookup_symbol_imports_or_template (const char *scope, TYPE_N_TEMPLATE_ARGUMENTS (context), TYPE_TEMPLATE_ARGUMENTS (context)); if (result != NULL) - return result; + { + do_cleanups (cleanups); + return result; + } } do_cleanups (cleanups); |