Kaydet (Commit) fafcf07e authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#982167 Unchecked return value

Change-Id: I14c306132a8f12c6f7ecebe5b012984d04bf0d91
üst e7d9a137
...@@ -180,7 +180,11 @@ produceFile(const OString& regFileName, sPair_t const*const pDepFile) ...@@ -180,7 +180,11 @@ produceFile(const OString& regFileName, sPair_t const*const pDepFile)
if ( !idlc()->getRoot()->dump(rootKey) ) if ( !idlc()->getRoot()->dump(rootKey) )
{ {
rootKey.releaseKey(); rootKey.releaseKey();
regFile.close(); if (regFile.close() != REG_NO_ERROR)
{
fprintf(stderr, "%s: could not close registry file '%s'\n",
pOptions->getProgramName().getStr(), regFileName.getStr());
}
regFile.destroy(OStringToOUString(regFileName, RTL_TEXTENCODING_UTF8)); regFile.destroy(OStringToOUString(regFileName, RTL_TEXTENCODING_UTF8));
removeIfExists(regFileName); removeIfExists(regFileName);
cleanPath(); cleanPath();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment