From 15daa63112e49f309d61083247bedd8f0b557b0c Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Sat, 11 Aug 2018 20:47:08 -0400 Subject: [PATCH 05/10] e2fsck: fix fd leak in reserve_stdio_fds Signed-off-by: Theodore Ts'o Reviewed-by: Lukas Czerner --- e2fsck/unix.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e2fsck/unix.c b/e2fsck/unix.c index 90065b39..2df22b17 100644 --- a/e2fsck/unix.c +++ b/e2fsck/unix.c @@ -617,9 +617,10 @@ static void reserve_stdio_fds(void) fprintf(stderr, _("ERROR: Couldn't open " "/dev/null (%s)\n"), strerror(errno)); - break; + return; } } + (void) close(fd); } #ifdef HAVE_SIGNAL_H -- 2.17.2