2003-11-05 Jeff Johnston <jjohnstn@redhat.com>

* libc/stdlib/wcsrtombs.c (_wcsrtombs_r): Numerous fixes
        to make code work as specified in standard.
This commit is contained in:
Jeff Johnston 2003-11-06 00:46:59 +00:00
parent d417aec908
commit da2d12279b
2 changed files with 30 additions and 17 deletions

View File

@ -1,3 +1,8 @@
2003-11-05 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdlib/wcsrtombs.c (_wcsrtombs_r): Numerous fixes
to make code work as specified in standard.
2003-10-23 Jeff Johnston <jjohnstn@redhat.com> 2003-10-23 Jeff Johnston <jjohnstn@redhat.com>
* configure.in: Use absolute newlib basedir when forming * configure.in: Use absolute newlib basedir when forming

View File

@ -14,9 +14,9 @@ _DEFUN (_wcsrtombs_r, (r, dst, src, len, ps),
{ {
char *ptr = dst; char *ptr = dst;
char buff[10]; char buff[10];
int i, n; wchar_t *pwcs;
int count; size_t n;
wint_t wch; int i;
#ifdef MB_CAPABLE #ifdef MB_CAPABLE
if (ps == NULL) if (ps == NULL)
@ -26,11 +26,15 @@ _DEFUN (_wcsrtombs_r, (r, dst, src, len, ps),
} }
#endif #endif
n = (int)len; /* If no dst pointer, treat len as maximum possible value. */
if (dst == NULL)
len = (size_t)-1;
while (n > 0) n = 0;
pwcs = (wchar_t *)(*src);
while (n < len)
{ {
wchar_t *pwcs = (wchar_t *)(*src);
int count = ps->__count; int count = ps->__count;
wint_t wch = ps->__value.__wch; wint_t wch = ps->__value.__wch;
int bytes = _wctomb_r (r, buff, *pwcs, ps); int bytes = _wctomb_r (r, buff, *pwcs, ps);
@ -40,29 +44,33 @@ _DEFUN (_wcsrtombs_r, (r, dst, src, len, ps),
ps->__count = 0; ps->__count = 0;
return (size_t)-1; return (size_t)-1;
} }
if (bytes <= n) if (n <= len - bytes && bytes < len)
{ {
for (i = 0; i < bytes; ++i) n += bytes;
*ptr++ = buff[i]; if (dst)
if (*pwcs == 0x00)
{ {
*src = NULL; for (i = 0; i < bytes; ++i)
ps->__count = 0; *ptr++ = buff[i];
return (size_t)(ptr - dst - 1); ++(*src);
}
if (*pwcs++ == 0x00)
{
if (dst)
*src = NULL;
ps->__count = 0;
return n - 1;
} }
++(*src);
} }
else else
{ {
/* not enough room, we must back up state to before _wctomb_r call */ /* not enough room, we must back up state to before _wctomb_r call */
ps->__count = count; ps->__count = count;
ps->__value.__wch = wch; ps->__value.__wch = wch;
len = 0;
} }
n -= bytes;
} }
return (size_t)(ptr - dst); return n;
} }
#ifndef _REENT_ONLY #ifndef _REENT_ONLY