Closed AppChecker closed 7 years ago
Hi!
Please look this code fragment
last_state=temp_host->last_state; last_state=temp_host->last_hard_state;
Varialbe 'last_state' is assigned twice. Probably, it should be:
last_state=temp_host->last_state; last_hard_state=temp_host->last_hard_state;
like this
This possible defect found by AppChecker
@Madlohe or @corynorell Can one of you create a patch and file a PR please?
Closed via #40 - @Madlohe can you add yourself to the contributers/thanks list? Thanks.
Hi!
Please look this code fragment
Varialbe 'last_state' is assigned twice. Probably, it should be:
like this
This possible defect found by AppChecker