From dddba3432f40ce1ba3558e6ec132d19e88b1f25c Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Fri, 13 Sep 2019 12:37:25 -0700 Subject: [PATCH] Initialize missing field in File. (Coverity 1057851, 1057852, 1057853) --- src/File.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/File.cc b/src/File.cc index 28fd8bea9c..2a48f14ef9 100644 --- a/src/File.cc +++ b/src/File.cc @@ -165,7 +165,7 @@ BroFile::~BroFile() void BroFile::Init() { - is_open = 0; + open_time = is_open = 0; attrs = 0; buffered = true; raw_output = false;