Don't crash if config file doesn't exist.

This fixes T425. Thanks to Scimmia for reporting.
This commit is contained in:
Tom Hacohen 2013-10-03 11:55:35 +01:00
parent fe598a0851
commit 3a1efb5d49
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ ecrire_cfg_load(void)
Eet_File *ef;
if (!config_file)
return EINA_FALSE;
goto end;
ef = eet_open(config_file, EET_FILE_MODE_READ);
if (!ef)