|
From: <sv...@va...> - 2011-10-28 02:58:49
|
Author: sewardj
Date: 2011-10-28 03:53:49 +0100 (Fri, 28 Oct 2011)
New Revision: 12248
Log:
Handle longer un-sized symbols on arm-linux-android.
Modified:
trunk/coregrind/m_debuginfo/readelf.c
Modified: trunk/coregrind/m_debuginfo/readelf.c
===================================================================
--- trunk/coregrind/m_debuginfo/readelf.c 2011-10-28 02:45:15 UTC (rev 12247)
+++ trunk/coregrind/m_debuginfo/readelf.c 2011-10-28 02:53:49 UTC (rev 12248)
@@ -384,7 +384,7 @@
*/
if (sym->st_size == 0) {
# if defined(VGPV_arm_linux_android)
- *sym_size_out = 1024;
+ *sym_size_out = 2048;
# else
TRACE_SYMTAB(" ignore -- size=0: %s\n", sym_name);
return False;
|