diff options
Diffstat (limited to 'gdb/tracepoint.c')
-rw-r--r-- | gdb/tracepoint.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index 1931e6c..e9568e5 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -583,11 +583,12 @@ tracepoint_operation (struct tracepoint *t, int from_tty, ALL_TRACEPOINTS (t2) if (t2->next == t) { - tracepoint_delete_event (t2->number); t2->next = t->next; break; } + tracepoint_delete_event (t->number); + if (t->addr_string) xfree (t->addr_string); if (t->source_file) |