[binutils-gdb] Fix bug in 'say_where' transform
Tom Tromey
tromey@sourceware.org
Tue Jan 10 23:36:55 GMT 2023
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=066620dcfb9e3e4e68e2c20f60926cb2b016798c
commit 066620dcfb9e3e4e68e2c20f60926cb2b016798c
Author: Tom Tromey <tom@tromey.com>
Date: Tue Jan 10 16:35:08 2023 -0700
Fix bug in 'say_where' transform
The patch to change say_where into a method introduced a bug. This
patch fixes it.
Diff:
---
gdb/breakpoint.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index 6762fad5d2c..00cc2ab401c 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);
}
More information about the Gdb-cvs
mailing list