From 066620dcfb9e3e4e68e2c20f60926cb2b016798c Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 10 Jan 2023 16:35:08 -0700 Subject: Fix bug in 'say_where' transform The patch to change say_where into a method introduced a bug. This patch fixes it. --- gdb/breakpoint.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/breakpoint.c') diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 6762fad..00cc2ab 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -11558,9 +11558,9 @@ code_breakpoint::say_where () const if (loc->next) { - struct bp_location *loc = loc; + struct bp_location *iter = loc; int n = 0; - for (; loc; loc = loc->next) + for (; iter; iter = iter->next) ++n; gdb_printf (" (%d locations)", n); } -- cgit v1.1