| commit | ba4734098037555614b1ce6458b3f18415764f4a | [log] [tgz] |
|---|---|---|
| author | Petr Machata <pmachata@redhat.com> | Mon Oct 14 10:41:19 2013 +0200 |
| committer | Petr Machata <pmachata@redhat.com> | Wed Oct 23 01:00:02 2013 +0200 |
| tree | 9fed4ca6e000b3aa254a9b8fb24a04a315585e2f | |
| parent | b94407705ecddffd7820ee61bcad3f0d72ee87c1 [diff] [blame] |
Call breakpoint_on_hit for return breakpoints as well - This was always supposed to happen, but did not by omission.
diff --git a/handle_event.c b/handle_event.c index 3b45e9c..ec8713e 100644 --- a/handle_event.c +++ b/handle_event.c
@@ -796,6 +796,7 @@ struct breakpoint *bp = address2bpstruct(proc->leader, elem->return_addr); if (bp != NULL) { + breakpoint_on_hit(bp, proc); delete_breakpoint(proc, bp); } }