make endmntent function handle null argument

The function originates from SunOS 4.x in which the null argument
is allowed. glibc also handles this case.
This commit is contained in:
Timo Teräs 2014-08-06 14:15:15 +03:00 committed by Rich Felker
parent 00733dd1cf
commit 0a24be213a
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ FILE *setmntent(const char *name, const char *mode)
int endmntent(FILE *f)
{
fclose(f);
if (f) fclose(f);
return 1;
}