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:
Jon Siwek 2014-04-01 11:00:10 -05:00
parent a30caf6960
commit 0c82b6aa14
2 changed files with 4 additions and 3 deletions

View file

@ -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;
}