diff --git a/CHANGES b/CHANGES index 5cfbd0b17a..9b01d78fec 100644 --- a/CHANGES +++ b/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 * Small fix to deal with a bug in the SSL log delay mechanism. diff --git a/VERSION b/VERSION index 48cc941701..5d5226f599 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1-951 +2.1-971 diff --git a/src/file_analysis/AnalyzerSet.cc b/src/file_analysis/AnalyzerSet.cc index 2dc4902314..f7abc01dc2 100644 --- a/src/file_analysis/AnalyzerSet.cc +++ b/src/file_analysis/AnalyzerSet.cc @@ -15,7 +15,7 @@ static void analyzer_del_func(void* v) AnalyzerSet::AnalyzerSet(File* arg_file) : file(arg_file) { TypeList* t = new TypeList(); - t->Append(file_mgr->GetTagEnumType()); + t->Append(file_mgr->GetTagEnumType()->Ref()); t->Append(BifType::Record::Files::AnalyzerArgs->Ref()); analyzer_hash = new CompositeHash(t); Unref(t);