Remove redundant checks

This commit is contained in:
Gunnar Beutner 2015-03-02 13:20:31 +01:00
parent daaa446f58
commit 8a062a688b
1 changed files with 2 additions and 3 deletions

View File

@ -205,8 +205,7 @@ bool TroubleshootCommand::ObjectInfo(InfoLog& log, const boost::program_options:
}
}
CheckObjectFile(objectfile, log, OFile, OConsole, logs, configs);
if (OFile != NULL)
delete OFile;
delete OFile;
}
if (vm.count("include-vars")) {
@ -497,7 +496,7 @@ void TroubleshootCommand::CheckObjectFile(const String& objectfile, InfoLog& log
}
else {
ObjectListUtility::PrintObject(sStream, first, message, type_count, "", "");
if(OFile != NULL) {
if (OFile) {
InfoLogLine(*OFile)
<< sStream.str();
sStream.flush();