From 01bb2b09b1d34bec5841a3fa27e7a8696dcba869 Mon Sep 17 00:00:00 2001 From: Hans Dedecker Date: Tue, 17 Oct 2017 13:40:41 +0200 Subject: [PATCH] mount: fix SIGSEV crashes Don't close file descriptor in case file descriptor is NULL Signed-off-by: Hans Dedecker --- mount.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/mount.c b/mount.c index a7f1862..92606da 100644 --- a/mount.c +++ b/mount.c @@ -174,7 +174,6 @@ static int mount_check_disc(char *disc) if(!fp) { log_printf("error reading /proc/mounts"); - fclose(fp); return avail; } while((fgets(tmp, 256, fp) != NULL) && (avail == -1)) @@ -615,7 +614,6 @@ static void mount_check_mount_list(void) if(!fp) { log_printf("error reading /proc/mounts"); - fclose(fp); return; } mounted_count = 0; -- 2.25.1