|
From: <sv...@va...> - 2005-05-20 02:10:50
|
Author: sewardj
Date: 2005-05-20 03:10:45 +0100 (Fri, 20 May 2005)
New Revision: 3778
Modified:
trunk/coregrind/vg_symtab2.c
Log:
Apparently a CFI record covering 1.4MB was spotted in the wild. I
don't know if I believe this, but anyway, increase the sanity
threshold length accordingly.
Modified: trunk/coregrind/vg_symtab2.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/coregrind/vg_symtab2.c 2005-05-20 02:02:10 UTC (rev 3777)
+++ trunk/coregrind/vg_symtab2.c 2005-05-20 02:10:45 UTC (rev 3778)
@@ -384,7 +384,7 @@
VG_(ppCfiSI)(cfisi);
}
=20
- vg_assert(cfisi->len > 0 && cfisi->len < 1000000);
+ vg_assert(cfisi->len > 0 && cfisi->len < 2000000);
=20
UInt new_sz, i;
CfiSI* new_tab;
|