public inbox for newlib@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 1/4] libc/iconv: Detect CES handler loading failure
@ 2020-07-09 23:58 Keith Packard
  2020-07-09 23:58 ` [PATCH 2/4] libc/iconv: Remove unneeded pointer var for _iconv_aliases Keith Packard
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Keith Packard @ 2020-07-09 23:58 UTC (permalink / raw)
  To: newlib

Fix the code checking for character set loading failure so that
it checks the return value from the init function.

Signed-off-by: Keith Packard <keithp@keithp.com>
---
 newlib/libc/iconv/ces/euc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/newlib/libc/iconv/ces/euc.c b/newlib/libc/iconv/ces/euc.c
index 29d36f941..ebd7091b0 100644
--- a/newlib/libc/iconv/ces/euc.c
+++ b/newlib/libc/iconv/ces/euc.c
@@ -306,7 +306,7 @@ ok:
       data->data[i] = _iconv_to_ucs_ces_handlers_table.init (
                                                         rptr,
                                                         data->desc[i].csname);
-      if (data->data == NULL)
+      if (data->data[i] == NULL)
         goto error;
     } 
 
-- 
2.27.0


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-07-11  0:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-09 23:58 [PATCH 1/4] libc/iconv: Detect CES handler loading failure Keith Packard
2020-07-09 23:58 ` [PATCH 2/4] libc/iconv: Remove unneeded pointer var for _iconv_aliases Keith Packard
2020-07-09 23:58 ` [PATCH 3/4] libc/iconv: find_alias was mis-computing remaining alias table length Keith Packard
2020-07-09 23:58 ` [PATCH 4/4] testsuite: Fix iconv tests to use new encoding config defines Keith Packard
2020-07-10 10:05 ` [PATCH 1/4] libc/iconv: Detect CES handler loading failure Corinna Vinschen
2020-07-11  0:26   ` Keith Packard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).