diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-04-15 10:15:16 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-04-15 10:15:16 +0000 |
commit | 479e9b3f2135707d4bfd13bf6c2ad1a242ea6cfc (patch) | |
tree | 9c17c6ca936f6c5ec2c003c9e47292bdba689643 /iconv/gconv_simple.c | |
parent | 480bc72713c841bbf55f4a33fe9f11d2c304ef1a (diff) | |
download | glibc-479e9b3f2135707d4bfd13bf6c2ad1a242ea6cfc.tar.gz |
Update.
1998-04-15 Ulrich Drepper <drepper@cygnus.com>
* iconv/gconv_simple.c (__gconv_transform_ucs4_ascii): Fix typo in
last change.
1998-04-14 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* elf/dl-minimal.c (__strtol_internal): Correct range check. Fix
return value on overflow.
1998-04-14 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/posix/mkstemp.c (mkstemp): Change value and v to 64
bits.
1998-04-14 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* malloc/mtrace.c (mtrace): Use standard function setvbuf instead
of non-standard function setbuffer.
1998-04-15 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* stdio-common/perror.c: Include <string.h> for __strerror_r.
Diffstat (limited to 'iconv/gconv_simple.c')
-rw-r--r-- | iconv/gconv_simple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iconv/gconv_simple.c b/iconv/gconv_simple.c index 21f3caee92..38b6b56adb 100644 --- a/iconv/gconv_simple.c +++ b/iconv/gconv_simple.c @@ -239,7 +239,7 @@ __gconv_transform_ucs4_ascii (struct gconv_step *step, size_t cnt = 0; while (data->outbufavail < data->outbufsize - && cnt + sizeof (wchar_t) + 3 < *inlen) + && cnt + 3 < *inlen) { if (*newinbuf < L'\0' || *newinbuf > L'\x7f') { |