fix logic in __fwriting

This commit is contained in:
Rich Felker 2011-06-30 13:27:08 -04:00
parent a0b56b947a
commit e5cb55fedd
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ int __fsetlocking(FILE *f, int type)
int __fwriting(FILE *f) int __fwriting(FILE *f)
{ {
return f->wend > f->wpos; return f->wend && f->wpos > f->wbase;
} }
int __freading(FILE *f) int __freading(FILE *f)