* libio/memstream.c (open_memstream): Don't allow wide char operations.
This commit is contained in:
Ulrich Drepper 2003-09-15 06:28:10 +00:00
parent b6cfea1299
commit cc93e10244
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2003-09-14 Ulrich Drepper <drepper@redhat.com>
* libio/memstream.c (open_memstream): Don't allow wide char operations.
* dirent/dirent.h: Remove __THROW from scandir.
2003-09-14 Philip Blundell <philb@gnu.org>

View File

@ -112,7 +112,7 @@ open_memstream (bufloc, sizeloc)
buf = malloc (_IO_BUFSIZ);
if (buf == NULL)
return NULL;
_IO_no_init (&new_f->fp._sf._sbf._f, 0, 0, &new_f->wd, &_IO_wmem_jumps);
_IO_old_init (&new_f->fp._sf._sbf._f, 0);
_IO_JUMPS ((struct _IO_FILE_plus *) &new_f->fp._sf._sbf) = &_IO_mem_jumps;
_IO_str_init_static_internal (&new_f->fp._sf, buf, _IO_BUFSIZ, buf);
new_f->fp._sf._sbf._f._flags &= ~_IO_USER_BUF;