From 06a64a0b786b2a3b81e8caced730c43939a78684 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 16 Aug 2010 19:19:22 +0000 Subject: gdb * value.c (release_value): Clear 'next' pointer. * breakpoint.c (watch_command_1): Add 'just_location' argument. (watch_command_wrapper): Update. (watch_maybe_just_location): New function. (watch_command): Update. (rwatch_command_wrapper): Update. (rwatch_command): Update. (awatch_command_wrapper): Update. (awatch_command): Update. (check_for_argument): New function. (_initialize_breakpoint): Update help text. gdb/testsuite * gdb.base/help.exp: Update. * gdb.base/watchpoint.exp (test_watchpoint_and_breakpoint): Delete watchpoint. (test_watch_location): New proc. (test_watchpoint_in_big_blob): Delete watchpoint. * gdb.base/watchpoint.c (func5): New function. (main): Call it. gdb/doc * gdb.texinfo (Set Watchpoints): Document -location option. --- gdb/value.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gdb/value.c') diff --git a/gdb/value.c b/gdb/value.c index b65ba32..d1c37e3 100644 --- a/gdb/value.c +++ b/gdb/value.c @@ -747,6 +747,7 @@ release_value (struct value *val) if (all_values == val) { all_values = val->next; + val->next = NULL; return; } @@ -755,6 +756,7 @@ release_value (struct value *val) if (v->next == val) { v->next = val->next; + val->next = NULL; break; } } -- cgit v1.1