From: Ulrich Drepper Date: Thu, 19 Jan 2006 00:38:35 +0000 (+0000) Subject: (_IO_new_file_fopen): If ,ccs= is given, also set vtable to the wide vtable. X-Git-Tag: cvs/fedora-glibc-20060130T0922~31 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a815c3ab359e99edc5d44934a0d00467a9a16bad;p=thirdparty%2Fglibc.git (_IO_new_file_fopen): If ,ccs= is given, also set vtable to the wide vtable. --- diff --git a/libio/fileops.c b/libio/fileops.c index 74d5cd0dbc2..cf7fd65421c 100644 --- a/libio/fileops.c +++ b/libio/fileops.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1995, 1997-2004, 2005 Free Software Foundation, Inc. +/* Copyright (C) 1993, 1995, 1997-2005, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Per Bothner . @@ -399,6 +399,9 @@ _IO_new_file_fopen (fp, filename, mode, is32not64) /* And now the transliteration. */ cc->__cd_out.__cd.__data[0].__trans = &__libio_translit; + /* From now on use the wide character callback functions. */ + ((struct _IO_FILE_plus *) fp)->vtable = fp->_wide_data->_wide_vtable; + /* Set the mode now. */ result->_mode = 1; }