|
From: <sv...@va...> - 2015-06-02 22:17:58
|
Author: philippe
Date: Tue Jun 2 23:17:51 2015
New Revision: 15307
Log:
Default is 1 for the unwind length range, not 0
Modified:
trunk/coregrind/m_gdbserver/server.c
Modified: trunk/coregrind/m_gdbserver/server.c
==============================================================================
--- trunk/coregrind/m_gdbserver/server.c (original)
+++ trunk/coregrind/m_gdbserver/server.c Tue Jun 2 23:17:51 2015
@@ -459,7 +459,7 @@
}
case 10: { /* unwind */
Addr address;
- SizeT sz = 0;
+ SizeT sz = 1;
if (VG_(strtok_get_address_and_size) (&address,
&sz, &ssaveptr)) {
VG_(ppUnwindInfo) (address, address + sz - 1);
|