+1998-04-01 Ulrich Drepper <drepper@cygnus.com>
+
+ * iconv/gconv_simple.c (__gconv_transform_ucs4_utf8): Compute
+ number of converted bytes correctly.
+
1998-04-01 Thorsten Kukuk <kukuk@vt.uni-paderborn.de>
* sunrpc/clnt_udp.c (clntudp_call): Don't check the xid if
/* Simple transformations functions.
- Copyright (C) 1997 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
/* Remember how much we converted. */
do_write += newinbuf - inbuf;
- *inlen -= (newinbuf - inbuf) * sizeof (wchar_t);
+ *inlen -= newinbuf - inbuf;
data->outbufavail += actually;