From a58162c257d51ee5309bbd92efe7eda60dbef8aa Mon Sep 17 00:00:00 2001 From: Jan Kratochvil Date: Tue, 8 Sep 2009 18:07:23 +0000 Subject: [PATCH] gdb/ * ia64-tdep.c (ia64_memory_remove_breakpoint): Call do_cleanups before a return. --- gdb/ChangeLog | 5 +++++ gdb/ia64-tdep.c | 1 + 2 files changed, 6 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d4cdc95..0283607 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2009-09-08 Jan Kratochvil + * ia64-tdep.c (ia64_memory_remove_breakpoint): Call do_cleanups + before a return. + +2009-09-08 Jan Kratochvil + * ia64-tdep.c (ia64_memory_insert_breakpoint) (ia64_memory_remove_breakpoint): Return immediately if any of memory reads fail. Do not combine the VAL values. diff --git a/gdb/ia64-tdep.c b/gdb/ia64-tdep.c index d68c044..bc72e40 100644 --- a/gdb/ia64-tdep.c +++ b/gdb/ia64-tdep.c @@ -725,6 +725,7 @@ ia64_memory_remove_breakpoint (struct gdbarch *gdbarch, warning (_("Cannot remove breakpoint at address %s, " "no break instruction at such address."), paddress (gdbarch, bp_tgt->placed_address)); + do_cleanups (cleanup); return -1; } -- 2.7.4