libc/iconv: Detect CES handler loading failure

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>
This commit is contained in:
Keith Packard via Newlib 2020-07-09 16:58:45 -07:00 committed by Corinna Vinschen
parent acfc63b0cf
commit 6c772f4547
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}