* libc/stdlib/wctob.c (wctob): Reorganize and fix WEOF check. Rename
pwc to pmb and convert to array to avoid buffer overflow. Rename c to wc. Check wc for WEOF instead of for EOF. Return first byte of pmb if __wctomb conversion returned exactly one byte, EOF otherwise.
This commit is contained in:
parent
be129c26e2
commit
ffa42cf6a0
|
@ -1,3 +1,10 @@
|
||||||
|
2010-05-02 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* libc/stdlib/wctob.c (wctob): Reorganize and fix WEOF check. Rename
|
||||||
|
pwc to pmb and convert to array to avoid buffer overflow. Rename c to
|
||||||
|
wc. Check wc for WEOF instead of for EOF. Return first byte of pmb if
|
||||||
|
__wctomb conversion returned exactly one byte, EOF otherwise.
|
||||||
|
|
||||||
2010-04-30 Corinna Vinschen <corinna@vinschen.de>
|
2010-04-30 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* libc/include/langinfo.h: Fix #endif positioning.
|
* libc/include/langinfo.h: Fix #endif positioning.
|
||||||
|
|
|
@ -1,26 +1,24 @@
|
||||||
#include <reent.h>
|
#include <reent.h>
|
||||||
#include <wchar.h>
|
#include <wchar.h>
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <limits.h>
|
||||||
#include "local.h"
|
#include "local.h"
|
||||||
|
|
||||||
int
|
int
|
||||||
wctob (wint_t c)
|
wctob (wint_t wc)
|
||||||
{
|
{
|
||||||
mbstate_t mbs;
|
mbstate_t mbs;
|
||||||
int retval = 0;
|
unsigned char pmb[MB_LEN_MAX];
|
||||||
unsigned char pwc;
|
|
||||||
|
if (wc == WEOF)
|
||||||
|
return EOF;
|
||||||
|
|
||||||
/* Put mbs in initial state. */
|
/* Put mbs in initial state. */
|
||||||
memset (&mbs, '\0', sizeof (mbs));
|
memset (&mbs, '\0', sizeof (mbs));
|
||||||
|
|
||||||
_REENT_CHECK_MISC(_REENT);
|
_REENT_CHECK_MISC(_REENT);
|
||||||
|
|
||||||
retval = __wctomb (_REENT, &pwc, c, __locale_charset (), &mbs);
|
return __wctomb (_REENT, (char *) pmb, wc, __locale_charset (), &mbs) == 1
|
||||||
|
? (int) pmb[0] : EOF;
|
||||||
if (c == EOF || retval != 1)
|
|
||||||
return WEOF;
|
|
||||||
else
|
|
||||||
return (int)pwc;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue