diff options
| author | Wolfram Schneider <wosch@FreeBSD.org> | 2022-01-30 09:27:21 +0000 |
|---|---|---|
| committer | Wolfram Schneider <wosch@FreeBSD.org> | 2022-01-30 09:27:21 +0000 |
| commit | 72a0982cd529c7cdeee7fd4eb7b1fd8bfdd545cb (patch) | |
| tree | b280cf964e9c5700e763ee0e35d59a9036b1c4d9 /usr.bin/locate/code | |
| parent | a01ca46b9b86608bfa080a4d86d586beb9e756c9 (diff) | |
Diffstat (limited to 'usr.bin/locate/code')
| -rw-r--r-- | usr.bin/locate/code/locate.code.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/locate/code/locate.code.c b/usr.bin/locate/code/locate.code.c index 4decf5a2e864..23fa043b12af 100644 --- a/usr.bin/locate/code/locate.code.c +++ b/usr.bin/locate/code/locate.code.c @@ -144,7 +144,8 @@ main(int argc, char *argv[]) err(1, "%s", argv[0]); /* First copy bigram array to stdout. */ - (void)fgets(bigrams, BGBUFSIZE + 1, fp); + if (fgets(bigrams, BGBUFSIZE + 1, fp) == NULL) + err(1, "get bigram array"); if (fwrite(bigrams, 1, BGBUFSIZE, stdout) != BGBUFSIZE) err(1, "stdout"); @@ -246,9 +247,11 @@ main(int argc, char *argv[]) oldpath = buf2; } } + /* Non-zero status if there were errors */ if (fflush(stdout) != 0 || ferror(stdout)) - exit(1); + errx(1, "stdout"); + exit(0); } |
