From: Sam Mendoza-Jonas Date: Wed, 2 Mar 2016 04:36:36 +0000 (+1100) Subject: ui/ncurses: Check wcstombs() for error in nc-lang X-Git-Tag: v1.0.0~7 X-Git-Url: https://git.ozlabs.org/?a=commitdiff_plain;h=0a10130b9d66a6f3f94094400871c9410b340674;p=petitboot ui/ncurses: Check wcstombs() for error in nc-lang If we are unable to correctly parse wide-character strings for display in the Language screen (eg. due to an incorrect locale) display an error string instead of continuing to try to display the string. Signed-off-by: Sam Mendoza-Jonas --- diff --git a/ui/ncurses/nc-lang.c b/ui/ncurses/nc-lang.c index 7879c45..a7c9ccc 100644 --- a/ui/ncurses/nc-lang.c +++ b/ui/ncurses/nc-lang.c @@ -21,6 +21,7 @@ #include #include +#include #include #include @@ -265,8 +266,14 @@ static void lang_screen_setup_widgets(struct lang_screen *screen, len = wcstombs(NULL, lang->label, 0); assert(len >= 0); - label = talloc_array(screen, char, len + 1); - wcstombs(label, lang->label, len + 1); + if (len < 0) { + label = talloc_asprintf(screen, + "Unable to display text in this locale (%s)\n", + setlocale(LC_ALL, NULL)); + } else { + label = talloc_array(screen, char, len + 1); + wcstombs(label, lang->label, len + 1); + } selected = config->lang && !strcmp(lang->name, config->lang); found |= selected;