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

coverity#982170 Unchecked return value from library

hopefully rsc is on the way out

Change-Id: I270de6c4433560dbed0185e462237c3aa95a98a3
üst 512114e5
......@@ -710,7 +710,7 @@ ERRTYPE RscCompiler::Link()
else
{
#ifdef UNX
chmod( it->aOutputRc.getStr(), S_IRWXU | S_IRWXG | S_IROTH );
(void)chmod( it->aOutputRc.getStr(), S_IRWXU | S_IRWXG | S_IROTH );
#endif
}
......@@ -726,7 +726,7 @@ ERRTYPE RscCompiler::Link()
else
{
#ifdef UNX
chmod( aSysList.getStr(), S_IRWXU | S_IRWXG | S_IROTH );
(void)chmod( aSysList.getStr(), S_IRWXU | S_IRWXG | S_IROTH );
#endif
}
}
......
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