|
From: <sv...@va...> - 2015-03-11 22:16:29
|
Author: florian
Date: Wed Mar 11 22:16:22 2015
New Revision: 15001
Log:
Remove assertion. Unlikely as it may be, len may be huge
and therefore we cannot assert otherwise.
Modified:
trunk/coregrind/m_debuginfo/storage.c
Modified: trunk/coregrind/m_debuginfo/storage.c
==============================================================================
--- trunk/coregrind/m_debuginfo/storage.c (original)
+++ trunk/coregrind/m_debuginfo/storage.c Wed Mar 11 22:16:22 2015
@@ -704,7 +704,6 @@
VG_(message)(Vg_DebugMsg,
"warning: DiCfSI %#lx .. %#lx is huge; length = %u (%s)\n",
base, base + len - 1, len, di->soname);
- vg_assert(len < 500000000);
vg_assert(di->fsm.have_rx_map && di->fsm.have_rw_map);
/* Find mapping where at least one end of the CFSI falls into. */
|