Fix comparisons that test if an unsigned value is < 0.

Reviewed by:	tjr
This commit is contained in:
stefanf 2005-02-12 08:45:12 +00:00
parent c2cb0d36b3
commit 971450a168
2 changed files with 4 additions and 4 deletions

View File

@ -388,7 +388,7 @@ _UTF8_wcsnrtombs(char * __restrict dst, const wchar_t ** __restrict src,
*dst = *s;
} else if (len > (size_t)MB_CUR_MAX) {
/* Enough space to translate in-place. */
if ((nb = (int)_UTF8_wcrtomb(dst, *s, ps)) < 0) {
if ((nb = _UTF8_wcrtomb(dst, *s, ps)) == (size_t)-1) {
*src = s;
return ((size_t)-1);
}
@ -396,7 +396,7 @@ _UTF8_wcsnrtombs(char * __restrict dst, const wchar_t ** __restrict src,
/*
* May not be enough space; use temp. buffer.
*/
if ((nb = (int)_UTF8_wcrtomb(buf, *s, ps)) < 0) {
if ((nb = _UTF8_wcrtomb(buf, *s, ps)) == (size_t)-1) {
*src = s;
return ((size_t)-1);
}

View File

@ -73,7 +73,7 @@ __wcsnrtombs_std(char * __restrict dst, const wchar_t ** __restrict src,
while (len > 0 && nwc-- > 0) {
if (len > (size_t)MB_CUR_MAX) {
/* Enough space to translate in-place. */
if ((nb = (int)__wcrtomb(dst, *s, ps)) < 0) {
if ((nb = __wcrtomb(dst, *s, ps)) == (size_t)-1) {
*src = s;
return ((size_t)-1);
}
@ -86,7 +86,7 @@ __wcsnrtombs_std(char * __restrict dst, const wchar_t ** __restrict src,
* character is too long for the buffer.
*/
mbsbak = *ps;
if ((nb = (int)__wcrtomb(buf, *s, ps)) < 0) {
if ((nb = __wcrtomb(buf, *s, ps)) == (size_t)-1) {
*src = s;
return ((size_t)-1);
}