Update menu_dialog.c

This commit is contained in:
Twinaphex 2017-11-21 04:38:38 +01:00 committed by GitHub
parent 9e3d6adf6e
commit d36d3e2c89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -255,6 +255,7 @@ void menu_dialog_push_pending(bool push, enum menu_dialog_type type)
void menu_dialog_push(void)
{
menu_displaylist_info_t info;
const char *label;
if (!menu_dialog_is_push_pending())
return;
@ -264,10 +265,10 @@ void menu_dialog_push(void)
info.list = menu_entries_get_menu_stack_ptr(0);
info.enum_idx = MENU_ENUM_LABEL_HELP;
// Set the label string, if it exists.
const char *label = msg_hash_to_str(MENU_ENUM_LABEL_HELP);
/* Set the label string, if it exists. */
label = msg_hash_to_str(MENU_ENUM_LABEL_HELP);
if (label)
info.label = strdup(label);
info.label = strdup(label);
menu_displaylist_ctl(DISPLAYLIST_HELP, &info);
}