mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
Fix a couple nits reported by Coverity.
An unnecessary null pointer check and uninitialized scalar fields. Don't expect these to be actual problems, but easy enough to fix in order to silence Coverity.
This commit is contained in:
parent
a30caf6960
commit
0c82b6aa14
2 changed files with 4 additions and 3 deletions
|
@ -19,7 +19,10 @@ Ascii::Ascii(WriterFrontend* frontend) : WriterBackend(frontend)
|
|||
{
|
||||
fd = 0;
|
||||
ascii_done = false;
|
||||
output_to_stdout = false;
|
||||
include_meta = false;
|
||||
tsv = false;
|
||||
use_json = false;
|
||||
formatter = 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue