Remove redundant checks

This commit is contained in:
Gunnar Beutner 2015-03-02 13:20:31 +01:00
parent daaa446f58
commit 8a062a688b

View File

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