CWE-563: Assignment to Variable without Use
Also known as: Unused Variable
The variable's value is assigned but never used, making it a dead store.
Overview
After the assignment, the variable is either assigned another value or goes out of scope. It is likely that the variable is simply vestigial, but it is also possible that the unused variable points out a bug.