diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-12-01 21:05:53 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-12-01 21:05:53 +0000 |
commit | f0d8cfd73c91a95ac1faa6702e75bfa821d57e05 (patch) | |
tree | 3840409fbca618d0d194c99452473893e1f8f0f6 /libio | |
parent | 75d86c1f4c44d395bf3efaefc172a13f09ea4022 (diff) | |
download | glibc-f0d8cfd73c91a95ac1faa6702e75bfa821d57e05.tar.gz glibc-f0d8cfd73c91a95ac1faa6702e75bfa821d57e05.tar.xz glibc-f0d8cfd73c91a95ac1faa6702e75bfa821d57e05.zip |
Update.
1999-12-01 Ulrich Drepper <drepper@cygnus.com> * libio/iosetbuffer.c: Use _IO_WSETBUF instead of constructing function call directly. * libio/iosetvbuf.c: Likewise.
Diffstat (limited to 'libio')
-rw-r--r-- | libio/iosetbuffer.c | 2 | ||||
-rw-r--r-- | libio/iosetvbuf.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libio/iosetbuffer.c b/libio/iosetbuffer.c index 5acbf5e812..852a2dd36c 100644 --- a/libio/iosetbuffer.c +++ b/libio/iosetbuffer.c @@ -40,7 +40,7 @@ _IO_setbuffer (fp, buf, size) (void) _IO_SETBUF (fp, buf, size); if (fp->_vtable_offset == 0 && fp->_mode == 0) /* We also have to set the buffer using the wide char function. */ - (*fp->_wide_data->_wide_vtable->__setbuf) (fp, buf, size); + (void) _IO_WSETBUF (fp, buf, size); _IO_funlockfile (fp); _IO_cleanup_region_end (0); } diff --git a/libio/iosetvbuf.c b/libio/iosetvbuf.c index f63a3c2174..a0287a3ee5 100644 --- a/libio/iosetvbuf.c +++ b/libio/iosetvbuf.c @@ -92,8 +92,8 @@ _IO_setvbuf (fp, buf, mode, size) result = _IO_SETBUF (fp, buf, size) == NULL ? EOF : 0; if (result == 0 && fp->_vtable_offset == 0 && fp->_mode == 0) /* We also have to set the buffer using the wide char function. */ - result = ((*fp->_wide_data->_wide_vtable->__setbuf) (fp, buf, size) == NULL - ? EOF : 0); + result = _IO_WSETBUF (fp, buf, size) == NULL ? EOF : 0; + unlock_return: _IO_funlockfile (fp); _IO_cleanup_region_end (0); |