stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=64b83d1e2ede04d15f0a4ea1d57848185776c882
commit 64b83d1e2ede04d15f0a4ea1d57848185776c882 Author: Stefan Schmidt <[email protected]> Date: Tue Feb 25 11:59:51 2020 +0100 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 <[email protected]> Differential Revision: https://phab.enlightenment.org/D11412 --- src/bin/exactness/exactness.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/exactness/exactness.c b/src/bin/exactness/exactness.c index 47aa4389c7..3c429d65d6 100644 --- a/src/bin/exactness/exactness.c +++ b/src/bin/exactness/exactness.c @@ -401,6 +401,7 @@ _list_file_load(const char *filename) List_Entry); } + fclose(file); return ret; } --
