mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Update.
* libio/memstream.c (open_memstream): Don't allow wide char operations.
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
2003-09-14 Ulrich Drepper <drepper@redhat.com>
|
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.
|
* dirent/dirent.h: Remove __THROW from scandir.
|
||||||
|
|
||||||
2003-09-14 Philip Blundell <philb@gnu.org>
|
2003-09-14 Philip Blundell <philb@gnu.org>
|
||||||
|
@ -112,7 +112,7 @@ open_memstream (bufloc, sizeloc)
|
|||||||
buf = malloc (_IO_BUFSIZ);
|
buf = malloc (_IO_BUFSIZ);
|
||||||
if (buf == NULL)
|
if (buf == NULL)
|
||||||
return 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_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);
|
_IO_str_init_static_internal (&new_f->fp._sf, buf, _IO_BUFSIZ, buf);
|
||||||
new_f->fp._sf._sbf._f._flags &= ~_IO_USER_BUF;
|
new_f->fp._sf._sbf._f._flags &= ~_IO_USER_BUF;
|
||||||
|
Reference in New Issue
Block a user