diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-09-15 06:28:10 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-09-15 06:28:10 +0000 |
commit | cc93e10244716b62f4f310a7c9dcc60dd531215a (patch) | |
tree | 4147d38bbef7c947ef586af0e28d74a983b52182 /libio | |
parent | b6cfea1299f5d86b17508fd7a52e3fb5bc40bb63 (diff) | |
download | glibc-cc93e10244716b62f4f310a7c9dcc60dd531215a.zip glibc-cc93e10244716b62f4f310a7c9dcc60dd531215a.tar.gz glibc-cc93e10244716b62f4f310a7c9dcc60dd531215a.tar.bz2 |
Update.
* libio/memstream.c (open_memstream): Don't allow wide char operations.
Diffstat (limited to 'libio')
-rw-r--r-- | libio/memstream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/memstream.c b/libio/memstream.c index efc6d83..68645fa 100644 --- a/libio/memstream.c +++ b/libio/memstream.c @@ -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; |