From 5005be3daf756a6a6dd4043ac9352e1c4b4af202 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Sat, 22 Oct 2016 20:28:08 +0200 Subject: [PATCH] Drop redundant checks for NULL input string in wctomb helper funcs Fixes Coverity CIDs 153465 and 153466 Signed-off-by: Corinna Vinschen --- newlib/libc/stdlib/wctomb_r.c | 6 ------ 1 file changed, 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) { -- 2.43.5