? autom4te-2.53.cache ? suppfile-fix.patch Index: ChangeLog =================================================================== RCS file: /cvsroot/valgrind/valgrind/ChangeLog,v retrieving revision 1.15 diff -u -r1.15 ChangeLog --- ChangeLog 15 Apr 2002 00:31:58 -0000 1.15 +++ ChangeLog 8 May 2003 22:33:40 -0000 @@ -1,3 +1,9 @@ +2003-05-08 Jeffrey Stedfast + + * coregrind/vg_errcontext.c (load_one_suppressions_file): Make + sure to finish reading up-to-and-including the '}' when the number + of callers is >= VG_N_SUPP_CALLERS. + 2002-04-15 Dirk Mueller * Makefile.am: use $(EXEEXT) to shut up newer automake versions. Index: coregrind/vg_errcontext.c =================================================================== RCS file: /cvsroot/valgrind/valgrind/coregrind/vg_errcontext.c,v retrieving revision 1.34 diff -u -r1.34 vg_errcontext.c --- coregrind/vg_errcontext.c 21 Apr 2003 13:24:36 -0000 1.34 +++ coregrind/vg_errcontext.c 8 May 2003 22:33:40 -0000 @@ -744,6 +744,13 @@ goto syntax_error; } + /* make sure to grab the '}' if the num callers is >= VG_N_SUPP_CALLERS */ + if (!STREQ(buf, "}")) { + do { + eof = VG_(get_line) ( fd, buf, N_BUF ); + } while (!eof && !STREQ(buf, "}")); + } + supp->next = vg_suppressions; vg_suppressions = supp; }