...
Tool | Version | Checker | Description | ||||||
---|---|---|---|---|---|---|---|---|---|
CodeSonar |
| LANG.FUNCS.IRV | Ignored Return Value | ||||||
|
|
| |||||||
| CHECKED_RETURN | Finds inconsistencies in how function call return values are handled. Coverity Prevent cannot discover all violations of this recommendation, so further verification is necessary | |||||||
Cppcheck |
| leakReturnValNotUsed | Return value of memory allocation function is not used. | ||||||
| CC2.EXP12 | Fully implemented | |||||||
| SV.RVT.RETVAL_NOTTESTED |
| |||||||
| 382 S | Fully implemented | |||||||
PRQA QA-C |
| 3200 | Fully implemented | ||||||
|
|
|
...
Related Guidelines
CERT C++ Secure Coding Standard | EXP12-CPP. Do not ignore values returned by functions or methods |
CERT Oracle Secure Coding Standard for Java | EXP00-J. Do not ignore values returned by methods |
ISO/IEC TR 24772:2013 | Passing Parameters and Return Values [CSJ] |
MITRE CWE | CWE-754, Improper check for unusual or exceptional conditions |
...