fix segv if missing icon_theme.

SVN revision: 39314
This commit is contained in:
Gustavo Sverzut Barbieri 2009-03-01 19:48:30 +00:00
parent 82a8ab89df
commit efc8391314
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ _fill_data(E_Config_Dialog_Data *cfdata)
_sort_icon_themes);
icon_themes = eina_list_free(icon_themes);
}
cfdata->themename = strdup(e_config->icon_theme);
cfdata->themename = strdup(e_config->icon_theme ? e_config->icon_theme : "");
return;
}