mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 19:18:19 +00:00
Merge remote-tracking branch 'origin/topic/jsiwek/faf-updates'
* origin/topic/jsiwek/faf-updates: Fix a ref counting bug.
This commit is contained in:
commit
fcbceb50ea
3 changed files with 15 additions and 2 deletions
13
CHANGES
13
CHANGES
|
@ -1,4 +1,17 @@
|
||||||
|
|
||||||
|
2.1-971 | 2013-08-01 13:28:32 -0700
|
||||||
|
|
||||||
|
* Fix some build errors. (Jon Siwek)
|
||||||
|
|
||||||
|
* Internal refactoring of how plugin components are tagged/managed.
|
||||||
|
(Jon Siwek)
|
||||||
|
|
||||||
|
* Fix various documentation, mostly related to file analysis. (Jon
|
||||||
|
Siwek)
|
||||||
|
|
||||||
|
* Changing the Bloom filter hashing so that it's independent of
|
||||||
|
CompositeHash. (Robin Sommer)
|
||||||
|
|
||||||
2.1-951 | 2013-08-01 11:19:23 -0400
|
2.1-951 | 2013-08-01 11:19:23 -0400
|
||||||
|
|
||||||
* Small fix to deal with a bug in the SSL log delay mechanism.
|
* Small fix to deal with a bug in the SSL log delay mechanism.
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.1-951
|
2.1-971
|
||||||
|
|
|
@ -15,7 +15,7 @@ static void analyzer_del_func(void* v)
|
||||||
AnalyzerSet::AnalyzerSet(File* arg_file) : file(arg_file)
|
AnalyzerSet::AnalyzerSet(File* arg_file) : file(arg_file)
|
||||||
{
|
{
|
||||||
TypeList* t = new TypeList();
|
TypeList* t = new TypeList();
|
||||||
t->Append(file_mgr->GetTagEnumType());
|
t->Append(file_mgr->GetTagEnumType()->Ref());
|
||||||
t->Append(BifType::Record::Files::AnalyzerArgs->Ref());
|
t->Append(BifType::Record::Files::AnalyzerArgs->Ref());
|
||||||
analyzer_hash = new CompositeHash(t);
|
analyzer_hash = new CompositeHash(t);
|
||||||
Unref(t);
|
Unref(t);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue