 
                            The presence of unused values may indicate significant logic errors. To prevent such errors, unused values should be identified and removed from code.
...
This recommendation is a specific case of MSC12-C. Detect and remove code that has no effect or is never executed.
Noncompliant Code Example
Wiki Markup p2}}  is   assigned   the   value   returned   by  {{bar()}},   but   that   value   is   never   used.   Note   this   example   assumes   that  {{foo()}}  and  {{bar()}}  return   valid  pointers in compliance with \[[DCL30-C]\]pointers (see DCL30-C. Declare objects with appropriate storage durations).
| Code Block | ||||
|---|---|---|---|---|
| 
 | ||||
| int *p1,; int *p2; p1 = foo(); p2 = bar(); if (baz()) { return p1; } else { p2 = p1; } return p2; | 
...
Compliant Solution
This example can be corrected corrected in many different ways, depending on the intent of the programmer. In this compliant solution, p2 is initialized to NULL rather than the result of bar()found to be extraneous. The calls to bar() and baz() can be removed if they do not produce any side effects.
| Code Block | ||||
|---|---|---|---|---|
| 
 | ||||
| int int *p1, *p2; p1 = foo(); p2/* =Removable NULL; if(baz()) return p1; else p2 = p1; return p2; | 
Risk Assessment
|  bar() does not produce any side effects */
(void)bar();
/* Removable if baz() does not produce any side effects */
(void)baz();
return p1;
 | 
Exceptions
| Anchor | ||||
|---|---|---|---|---|
| 
 | 
Risk Assessment
Unused The presence of unused values may indicate significant logic errors.
| Recommendation | Severity | Likelihood | Detectable | 
|---|
| Repairable | Priority | Level | 
|---|---|---|
| MSC13- | 
1 (low)
1 (unlikely)
2 (medium)
| C | Low | Unlikely | Yes | Yes | P3 | L3 | 
Automated Detection
...
| Tool | Version | Checker | Description | ||||||
|---|---|---|---|---|---|---|---|---|---|
| Astrée | 
 | Supported, but no explicit checker | |||||||
| CodeSonar | 
 | LANG.STRUCT.UUVAL | Unused value | ||||||
| 
 | UNUSED_VALUE | Finds variables that are assigned pointer values returned from a function call but never used | |||||||
| Helix QAC | 
 | C1500, C1502, C3203, C3205, C3206, C3207, C3229 DF2980, DF2981, DF2982, DF2983, DF2984, DF2985, DF2986 | |||||||
| Klocwork | 
 | LV_UNUSED.GEN | 
...
| GEN | |||||||||
| LDRA tool suite | 
 | 1 D, 8 D, 105 D, 94 D, 15 D | Fully implemented | ||||||
| Parasoft C/C++test | 
 | CERT_C-MSC13-a | Avoid unnecessary local variables | ||||||
| PC-lint Plus | 
 | 438, 505, 529, 715, 838 | Partially supported | ||||||
| Polyspace Bug Finder | 
 | Checks for: 
 Rec. partially covered. | |||||||
| PVS-Studio | 
 | V519, V596, V603, V714, V744, V751, V763, V1001, V5003 | |||||||
| SonarQube C/C++ Plugin | 
 | S1854 | 
Related Vulnerabilities
Search for vulnerabilities resulting from the violation of this rule on the CERTwebsite CERT website.
References
*Coverity 07 Section 6.1.20, "UNUSED_VALUE"
Related Guidelines
| SEI CERT C++ Coding Standard | VOID MSC13-CPP. Detect and remove unused values | 
| ISO/IEC TR 24772 | Likely Incorrect Expressions [KOA] Dead and Deactivated Code [XYQ] Unused Variable [XYR] | 
Bibliography
...
  References
 Coverity 07 Coverity Prevent? User's Manual (3.3.0) (2007).