diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/infrun.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8e1bd11..f5adaf8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2015-04-01 Pedro Alves <palves@redhat.com> + * infrun.c (keep_going): Also discard cleanups if inserting + breakpoints fails. + +2015-04-01 Pedro Alves <palves@redhat.com> + * infrun.c (wait_for_inferior): Install the finish_thread_state_cleanup cleanup across the whole function, not just around handle_inferior_event. diff --git a/gdb/infrun.c b/gdb/infrun.c index 18ce036..f366a57 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -6251,6 +6251,7 @@ keep_going (struct execution_control_state *ecs) { exception_print (gdb_stderr, e); stop_waiting (ecs); + discard_cleanups (old_cleanups); return; } END_CATCH |