diff options
-rw-r--r-- | newlib/libc/stdlib/wctomb_r.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/newlib/libc/stdlib/wctomb_r.c b/newlib/libc/stdlib/wctomb_r.c index 02b85e685..2c018f916 100644 --- a/newlib/libc/stdlib/wctomb_r.c +++ b/newlib/libc/stdlib/wctomb_r.c @@ -284,9 +284,6 @@ ___iso_wctomb (struct _reent *r, char *s, wchar_t _wchar, int iso_idx, { unsigned char mb; - if (s == NULL) - return 0; - for (mb = 0; mb < 0x60; ++mb) if (__iso_8859_conv[iso_idx][mb] == wchar) { @@ -443,9 +440,6 @@ ___cp_wctomb (struct _reent *r, char *s, wchar_t _wchar, int cp_idx, { unsigned char mb; - if (s == NULL) - return 0; - for (mb = 0; mb < 0x80; ++mb) if (__cp_conv[cp_idx][mb] == wchar) { |