diff options
Diffstat (limited to 'libc/stdio/stdio.cpp')
-rw-r--r-- | libc/stdio/stdio.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libc/stdio/stdio.cpp b/libc/stdio/stdio.cpp index afc2c4881..b8aced83b 100644 --- a/libc/stdio/stdio.cpp +++ b/libc/stdio/stdio.cpp @@ -773,10 +773,7 @@ char* fgets(char* buf, int n, FILE* fp) { // Returns first argument, or nullptr if no characters were read. // Does not return nullptr if n == 1. char* fgets_unlocked(char* buf, int n, FILE* fp) { - if (n <= 0) { - errno = EINVAL; - return nullptr; - } + if (n <= 0) __fortify_fatal("fgets: buffer size %d <= 0", n); _SET_ORIENTATION(fp, -1); |