From 151f9d6ced1da1b8bd7cfa0e952e05ff46e82dee Mon Sep 17 00:00:00 2001 From: Robin Sommer Date: Mon, 13 Jun 2016 08:16:34 -0700 Subject: [PATCH] Fixing Covertity warning (CID 1356391). --- CHANGES | 7 +++++++ VERSION | 2 +- src/DebugLogger.cc | 1 + 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 8a14be5e63..1e4593750b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,11 @@ +2.4-602 | 2016-06-13 08:16:34 -0700 + + * Fixing Covertity warning (CID 1356391). (Robin Sommer) + + * Guarding against reading beyond packet data when accessing L2 + address in Radiotap header. (Robin Sommer) + 2.4-600 | 2016-06-07 15:53:19 -0700 * Fixing typo in BIF macros. Reported by Jeff Barber. (Robin Sommer) diff --git a/VERSION b/VERSION index ec2b0bd3e4..c6874864e6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.4-600 +2.4-602 diff --git a/src/DebugLogger.cc b/src/DebugLogger.cc index 57f85af417..6a095a15db 100644 --- a/src/DebugLogger.cc +++ b/src/DebugLogger.cc @@ -25,6 +25,7 @@ DebugLogger::Stream DebugLogger::streams[NUM_DBGS] = { DebugLogger::DebugLogger() { verbose = false; + file = 0; } DebugLogger::~DebugLogger()