Blame SOURCES/0007-loadconv-Add-missing-fclose.patch

3f7af7
From 1c97e4df9e01c5f22a12fb6ecce25b4d80fd8f7c Mon Sep 17 00:00:00 2001
3f7af7
From: Adam Lackorzynski <adam@os.inf.tu-dresden.de>
3f7af7
Date: Mon, 13 Aug 2018 14:39:48 +0200
3f7af7
Subject: [PATCH 7/7] loadconv: Add missing fclose()
3f7af7
MIME-Version: 1.0
3f7af7
Content-Type: text/plain; charset=UTF-8
3f7af7
Content-Transfer-Encoding: 8bit
3f7af7
3f7af7
Issue found and reported by David Binderman.
3f7af7
3f7af7
This is a backport of commit f66b5c78.
3f7af7
3f7af7
Signed-off-by: Ondřej Lysoněk <olysonek@redhat.com>
3f7af7
---
3f7af7
 src/config.c | 6 ++++--
3f7af7
 1 file changed, 4 insertions(+), 2 deletions(-)
3f7af7
3f7af7
diff --git a/src/config.c b/src/config.c
3f7af7
index 36b6e37..0da4989 100644
3f7af7
--- a/src/config.c
3f7af7
+++ b/src/config.c
3f7af7
@@ -1865,6 +1865,7 @@ void doconv(void)
3f7af7
 int loadconv(char *buf)
3f7af7
 {
3f7af7
   FILE *fp;
3f7af7
+  int err = 0;
3f7af7
 
3f7af7
   if ((fp = fopen(pfix_home(buf), "rb")) == (FILE *)NULL) {
3f7af7
     werror(_("Cannot open conversion table %s"), pfix_home(buf));
3f7af7
@@ -1874,10 +1875,11 @@ int loadconv(char *buf)
3f7af7
       || fread(vt_outmap, sizeof(vt_outmap), (size_t)1, fp) != 1)
3f7af7
     {
3f7af7
       werror(_("Cannot read conversion table %s"), pfix_home(buf));
3f7af7
-      return 1;
3f7af7
+      err = 1;
3f7af7
     }
3f7af7
+
3f7af7
   fclose(fp);
3f7af7
-  return 0;
3f7af7
+  return err;
3f7af7
 }
3f7af7
 
3f7af7
 int saveconv(char *buf)
3f7af7
-- 
3f7af7
2.14.4
3f7af7