Merge "Add else branch to avoide fclose(NULL)"
This commit is contained in:
commit
10b043bb13
1 changed files with 2 additions and 1 deletions
|
@ -138,8 +138,9 @@ static ssize_t get_cpu_usages(thermal_module_t *module, cpu_usage_t *list) {
|
||||||
fclose(file);
|
fclose(file);
|
||||||
fclose(cpu_file);
|
fclose(cpu_file);
|
||||||
return errno ? -errno : -EIO;
|
return errno ? -errno : -EIO;
|
||||||
|
} else {
|
||||||
|
fclose(cpu_file);
|
||||||
}
|
}
|
||||||
fclose(cpu_file);
|
|
||||||
|
|
||||||
if (list != NULL) {
|
if (list != NULL) {
|
||||||
list[size] = (cpu_usage_t) {
|
list[size] = (cpu_usage_t) {
|
||||||
|
|
Loading…
Reference in a new issue