From: Julian Seward Date: Thu, 3 Dec 2009 14:35:15 +0000 (+0000) Subject: Double the size of some table to do with reading CIEs. X-Git-Tag: svn/VALGRIND_3_6_0~452 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9fd891fe9a2d5912716478e08f56c274d047b8aa;p=thirdparty%2Fvalgrind.git Double the size of some table to do with reading CIEs. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10964 --- diff --git a/coregrind/m_debuginfo/readdwarf.c b/coregrind/m_debuginfo/readdwarf.c index bde2cf1f3f..98a72436b9 100644 --- a/coregrind/m_debuginfo/readdwarf.c +++ b/coregrind/m_debuginfo/readdwarf.c @@ -3446,7 +3446,7 @@ static void init_CIE ( CIE* cie ) cie->saw_z_augmentation = False; } -#define N_CIEs 2000 +#define N_CIEs 4000 static CIE the_CIEs[N_CIEs];