Just to be safe.

SVN revision: 48557
This commit is contained in:
Chidambar Zinnoury 2010-05-02 18:23:45 +00:00
parent 20cd1af8ca
commit 575217b9f6
1 changed files with 5 additions and 2 deletions

View File

@ -826,8 +826,11 @@ _update_key_binding_list(E_Config_Dialog_Data *cfdata)
{
modifiers = bi->modifiers;
b = _key_binding_header_get(modifiers);
e_widget_ilist_header_append(cfdata->gui.o_binding_list, NULL, b);
free(b);
if (b)
{
e_widget_ilist_header_append(cfdata->gui.o_binding_list, NULL, b);
free(b);
}
}
b = _key_binding_text_get(bi);