From: Jan Kratochvil Date: Tue, 8 Sep 2009 18:07:23 +0000 (+0000) Subject: gdb/ X-Git-Tag: gdb_7_0-2009-09-16-branchpoint~106 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a58162c257d51ee5309bbd92efe7eda60dbef8aa;p=external%2Fbinutils.git gdb/ * ia64-tdep.c (ia64_memory_remove_breakpoint): Call do_cleanups before a return. --- 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; }