diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-07-08 16:21:11 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-07-08 16:21:11 +0000 |
commit | 38dc8fad642838e0ef54392bcec069ffb8dc3c98 (patch) | |
tree | 73610da11d7f99e0cd44e2f0b4465ebe73c273c5 /libio | |
parent | 80d41976443f045c747b67ed3a5dddb66c519227 (diff) |
[BZ #6719]
2008-07-08 Ulrich Drepper <drepper@redhat.com>
[BZ #6719]
* libio/iosetvbuf.c (_IO_setvbuf): Correctly clear buffering flags
when selecting fully-buffered stream.
Patch by Wang Xin <wxinee@gmail.com>.
Diffstat (limited to 'libio')
-rw-r--r-- | libio/iosetvbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/iosetvbuf.c b/libio/iosetvbuf.c index 7580230eb6..a92eaebf85 100644 --- a/libio/iosetvbuf.c +++ b/libio/iosetvbuf.c @@ -45,7 +45,7 @@ _IO_setvbuf (fp, buf, mode, size) switch (mode) { case _IOFBF: - fp->_IO_file_flags &= ~_IO_LINE_BUF|_IO_UNBUFFERED; + fp->_IO_file_flags &= ~(_IO_LINE_BUF|_IO_UNBUFFERED); if (buf == NULL) { if (fp->_IO_buf_base == NULL) |