diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2004-01-21 20:09:16 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2004-01-21 20:09:16 +0000 |
commit | 7d4be1efd53045983acf1d00041e70086d2c029f (patch) | |
tree | 4cdad2387f6d331569ee13de4c171122bb6cb65e /newlib/libc/stdlib/wcsrtombs.c | |
parent | a1dcf5d848c38877dad8c76bc295811d25dbf1d8 (diff) | |
download | newlib-7d4be1efd53045983acf1d00041e70086d2c029f.zip newlib-7d4be1efd53045983acf1d00041e70086d2c029f.tar.gz newlib-7d4be1efd53045983acf1d00041e70086d2c029f.tar.bz2 |
2004-01-21 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdlib/mbrtowc.c (_mbrtowc_r): Fix case where s is null
pointer to match C99 spec.
* libc/stdlib/mbsrtowcs.c (_mbsrtowc_r): Fix to ignore len when
dst is NULL. Also fix to not alter src pointer when dst is NULL
and call _mbrtowc_r instead of _mbtowc_r.
* libc/stdlib/wcsrtombs.c (_wcsrtombs_r): Call _wcrtomb_r instead
of _wctomb_r.
Diffstat (limited to 'newlib/libc/stdlib/wcsrtombs.c')
-rw-r--r-- | newlib/libc/stdlib/wcsrtombs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdlib/wcsrtombs.c b/newlib/libc/stdlib/wcsrtombs.c index 11fdf92..8c55b08 100644 --- a/newlib/libc/stdlib/wcsrtombs.c +++ b/newlib/libc/stdlib/wcsrtombs.c @@ -37,7 +37,7 @@ _DEFUN (_wcsrtombs_r, (r, dst, src, len, ps), { int count = ps->__count; wint_t wch = ps->__value.__wch; - int bytes = _wctomb_r (r, buff, *pwcs, ps); + int bytes = _wcrtomb_r (r, buff, *pwcs, ps); if (bytes == -1) { r->_errno = EILSEQ; |