|
From: <sv...@va...> - 2008-12-08 13:45:41
|
Author: sewardj
Date: 2008-12-08 13:45:35 +0000 (Mon, 08 Dec 2008)
New Revision: 8813
Log:
Fix bug introduced by frame-level wildcarding changes for suppressions
in r8725. (Konstantin Serebryany)
Modified:
trunk/coregrind/m_errormgr.c
Modified: trunk/coregrind/m_errormgr.c
===================================================================
--- trunk/coregrind/m_errormgr.c 2008-12-08 10:27:31 UTC (rev 8812)
+++ trunk/coregrind/m_errormgr.c 2008-12-08 13:45:35 UTC (rev 8813)
@@ -1237,7 +1237,7 @@
if (!VG_(get_fnname_Z_demangle_only)(trace[j], tmp, ERRTXT_LEN))
VG_(strcpy)(tmp, "???");
- if (VG_(string_match)(tmp, lookahead)) {
+ if (VG_(string_match)(lookahead, tmp)) {
// found a possible continuation, try from there
return supp_matches_callers_WRK(
&trace[j], n_ips - j,
|