summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2020-02-25 11:59:51 +0100
committerStefan Schmidt <s.schmidt@samsung.com>2020-02-25 16:43:28 +0100
commit64b83d1e2ede04d15f0a4ea1d57848185776c882 (patch)
treeea79b896b729ad7a9ec89c5c0776a20fdf4d52ac
parent8ff8aa3076fe319f891c5bd5fdc972c7c1e45451 (diff)
downloadefl-64b83d1e2ede04d15f0a4ea1d57848185776c882.tar.gz
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
-rw-r--r--src/bin/exactness/exactness.c1
1 files changed, 1 insertions, 0 deletions
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;
}