From 24b1cc829fef3a2501ace6ac7e803e3642de45ad Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 10 Jun 2017 13:17:31 -0500 Subject: Fix bug where grep stopped at first dangling symlink and error_exited(). --- toys/posix/grep.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/toys/posix/grep.c b/toys/posix/grep.c index a95203a0..c7b44e58 100644 --- a/toys/posix/grep.c +++ b/toys/posix/grep.c @@ -81,12 +81,18 @@ static void outline(char *line, char dash, char *name, long lcount, long bcount, static void do_grep(int fd, char *name) { struct double_list *dlb = 0; - FILE *file = xfdopen(fd, "r"); + FILE *file = fdopen(fd, "r"); long lcount = 0, mcount = 0, offset = 0, after = 0, before = 0; char *bars = 0; if (!fd) name = "(standard input)"; + if (!file) { + perror_msg("%s", name); + + return; + } + // Loop through lines of input for (;;) { char *line = 0, *start; -- cgit v1.2.3