Skip to content

Commit d052830

Browse files
author
philippe
committed
Default is 1 for the unwind length range, not 0
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15307 a5019735-40e9-0310-863c-91ae7b9d1cf9
1 parent 9bec77c commit d052830

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coregrind/m_gdbserver/server.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ int handle_gdb_valgrind_command (char *mon, OutputSink *sink_wanted_at_return)
459459
}
460460
case 10: { /* unwind */
461461
Addr address;
462-
SizeT sz = 0;
462+
SizeT sz = 1;
463463
if (VG_(strtok_get_address_and_size) (&address,
464464
&sz, &ssaveptr)) {
465465
VG_(ppUnwindInfo) (address, address + sz - 1);

0 commit comments

Comments
 (0)