From 484ddc8767ab30ac43a444a2a40de61b99c91eb1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Cristian=20Rodr=C3=ADguez?= Date: Fri, 2 Oct 2009 09:24:11 -0400 Subject: [PATCH] fix fd leak that causes fsck to fail with "too many open files" MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit fsck leaks fds when invoked with -R -A -M -a -t noopts=nofail Signed-off-by: Cristian Rodríguez Signed-off-by: Theodore Ts'o --- misc/ismounted.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/misc/ismounted.c b/misc/ismounted.c index 6d4b878..50b4140 100644 --- a/misc/ismounted.c +++ b/misc/ismounted.c @@ -86,9 +86,6 @@ static errcode_t check_mntent_file(const char *mtab_file, const char *file, char buf[1024], *device = 0, *mnt_dir = 0, *cp; *mount_flags = 0; - if ((f = fopen(mtab_file, "r")) == NULL) - return errno; - if ((f = setmntent (mtab_file, "r")) == NULL) return errno; if (stat(file, &st_buf) == 0) { -- 1.8.3.1