mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* wcsmbs/mbrtowc.c: Don't set errno if byte sequence is only incomplete but correct. * locale/programs/charmap.c: NUL-terminate names of generated
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Ulrich Drepper <drepper@gnu.org>, 1996.
|
||||
|
||||
@ -90,9 +90,11 @@ __mbrtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps)
|
||||
else
|
||||
result = inbuf - (const unsigned char *) s;
|
||||
}
|
||||
else if (status == __GCONV_INCOMPLETE_INPUT)
|
||||
result = (size_t) -2;
|
||||
else
|
||||
{
|
||||
result = status == __GCONV_INCOMPLETE_INPUT ? (size_t) -2 : (size_t) -1;
|
||||
result = (size_t) -1;
|
||||
__set_errno (EILSEQ);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user