CWC-110
Title
Unchecked Call Return Value
Relationships
SWC-104: Unchecked Call Return Value
CWE-252: Unchecked Return Value
Description
The return value of a message call is not checked. Execution will resume even if the called contract throws an exception. If the call fails accidentally or an attacker forces the call to fail, this may cause unexpected behaviour in the subsequent program logic.
Remediation
Check wheter return value is proper (if statements). undefined