diff options
| -rw-r--r-- | src/stdio/fgets.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/stdio/fgets.c b/src/stdio/fgets.c index b01a4187..cf5b1039 100644 --- a/src/stdio/fgets.c +++ b/src/stdio/fgets.c @@ -34,7 +34,7 @@ char *fgets(char *restrict s, int n, FILE *restrict f)  		n--;  		if ((*p++ = c) == '\n') break;  	} -	*p = 0; +	if (s) *p = 0;  	FUNLOCK(f); | 
