|
From: <sv...@va...> - 2010-05-28 20:10:09
|
Author: sewardj
Date: 2010-05-28 21:09:59 +0100 (Fri, 28 May 2010)
New Revision: 11136
Log:
libhb_so_recv(): don't pass a NULL filter to Filter__clear. Not sure
why thr->filter can be NULL here, though.
Modified:
trunk/helgrind/libhb_core.c
Modified: trunk/helgrind/libhb_core.c
===================================================================
--- trunk/helgrind/libhb_core.c 2010-05-27 10:43:21 UTC (rev 11135)
+++ trunk/helgrind/libhb_core.c 2010-05-28 20:09:59 UTC (rev 11136)
@@ -5711,7 +5711,8 @@
//VtsID__rcinc(thr->viW);
}
- Filter__clear(thr->filter, "libhb_so_recv");
+ if (thr->filter)
+ Filter__clear(thr->filter, "libhb_so_recv");
note_local_Kw_n_stack_for(thr);
if (strong_recv)
|