Kaydet (Commit) 1c053e7e authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#735340 Unchecked return value

Change-Id: I13df98f64ce505a08ba3e8b2582a17f5d202c4d1
üst 6151c6f4
...@@ -478,7 +478,9 @@ PrinterJob::EndJob() ...@@ -478,7 +478,9 @@ PrinterJob::EndJob()
} }
} }
else else
chmod( aFileName.getStr(), mnFileMode ); {
(void)chmod( aFileName.getStr(), mnFileMode );
}
} }
if (pDestFILE == NULL) if (pDestFILE == NULL)
pDestFILE = fopen (aFileName.getStr(), "w"); pDestFILE = fopen (aFileName.getStr(), "w");
......
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