exactness: close file we opened

We only opened it read only, but this should still be closed before
leaving.

CID: 1419853

Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Differential Revision: https://phab.enlightenment.org/D11412
This commit is contained in:
Stefan Schmidt 2020-02-25 11:59:51 +01:00
parent 8ff8aa3076
commit 64b83d1e2e
1 changed files with 1 additions and 0 deletions

View File

@ -401,6 +401,7 @@ _list_file_load(const char *filename)
List_Entry);
}
fclose(file);
return ret;
}