Fix resource leaks identified by cppcheck

* Where possible rearrange error checks to avoid branching
* Otherwise add missing `fclose`, `close`, `px4_close` calls before return
This commit is contained in:
Peter Duerr
2017-08-07 15:31:27 +02:00
committed by Lorenz Meier
parent 0a61e9b279
commit 5be23060e7
6 changed files with 14 additions and 6 deletions
+2
View File
@@ -79,6 +79,8 @@ int test_ppm_loopback(int argc, char *argv[])
if (result != OK) {
warnx("PWM_SERVO_GET_COUNT");
(void)close(servo_fd);
return ERROR;
}