diff options
Diffstat (limited to 'com32/menu/readconfig.c')
-rw-r--r-- | com32/menu/readconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/menu/readconfig.c b/com32/menu/readconfig.c index 3bbca3be..554ad918 100644 --- a/com32/menu/readconfig.c +++ b/com32/menu/readconfig.c @@ -120,6 +120,7 @@ static struct menu * new_menu(struct menu *parent, int i; m->label = refstrdup(label); + m->title = refstr_get(empty_string); if (parent) { /* Submenu */ @@ -136,7 +137,6 @@ static struct menu * new_menu(struct menu *parent, m->allowedit = parent->allowedit; m->timeout = parent->timeout; - m->title = refstr_get(empty_string); m->ontimeout = refstr_get(parent->ontimeout); m->onerror = refstr_get(parent->onerror); m->menu_master_passwd = refstr_get(parent->menu_master_passwd); |