From 64b83d1e2ede04d15f0a4ea1d57848185776c882 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Tue, 25 Feb 2020 11:59:51 +0100 Subject: [PATCH] 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 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; }