* Update _filbuf().
CORE-8080

svn path=/trunk/; revision=63234
This commit is contained in:
Amine Khaldi 2014-05-11 17:45:26 +00:00
parent 330869f298
commit 1adaa3117e

View file

@ -2263,6 +2263,11 @@ int CDECL _filbuf(FILE* file)
unsigned char c;
_lock_file(file);
if(file->_flag & _IOSTRG) {
_unlock_file(file);
return EOF;
}
/* Allocate buffer if needed */
if(file->_bufsiz == 0 && !(file->_flag & _IONBF))
alloc_buffer(file);