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

@ -1,4 +1,8 @@
1.6-dev-1482 | 2011-10-25 19:08:32 -0700
* Fixing bug in log managers predicate evaluation. (Robin Sommer)
1.6-dev-1481 | 2011-10-25 18:17:03 -0700 1.6-dev-1481 | 2011-10-25 18:17:03 -0700
* Fix a problem with DNS servers being logged that aren't actually * Fix a problem with DNS servers being logged that aren't actually

View file

@ -1 +1 @@
1.6-dev-1481 1.6-dev-1482

View file

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