Fixing bug in log managers predicate evaluation.

This commit is contained in:
Robin Sommer 2011-10-25 19:08:32 -07:00
parent e78a3c35e5
commit f61fcf219a
3 changed files with 6 additions and 2 deletions

View file

@ -894,7 +894,7 @@ bool LogMgr::Write(EnumVal* id, RecordVal* columns)
try
{
Val* v = filter->pred->Call(&vl);
int result = v->AsBool();
result = v->AsBool();
Unref(v);
}