diff --git a/CHANGES b/CHANGES index 66a10b0fc7..5f792de44e 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,13 @@ +2.1-651 | 2013-05-17 13:37:16 -0700 + + * Fix uninitialized DPM member. (Jon Siwek) + + * Fix issue with transaction ID reuse in a single DNS connection. (Seth Hall) + + * New function added to the queue.bro script to support peeking at + the new gettable item in the queue without removing it. (Seth Hall) + 2.1-647 | 2013-05-17 07:47:14 -0700 * Fixing Broxygen generation to have BROMAGIC set. (Robin Sommer) diff --git a/VERSION b/VERSION index a5b5bd372c..03cea9c71f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1-647 +2.1-651 diff --git a/src/DPM.cc b/src/DPM.cc index d7e5cd25ef..611cf65c89 100644 --- a/src/DPM.cc +++ b/src/DPM.cc @@ -34,7 +34,7 @@ ExpectedConn::ExpectedConn(const ExpectedConn& c) } DPM::DPM() -: expected_conns_queue(AssignedAnalyzer::compare) + : active_analyzers(0), expected_conns_queue(AssignedAnalyzer::compare) { }