goto not needed anymore with alloca

SVN revision: 50496
This commit is contained in:
Sebastian Dransfeld 2010-07-25 20:38:28 +00:00
parent 78f80647ea
commit 31c6799a7e
1 changed files with 1 additions and 1 deletions

View File

@ -596,7 +596,7 @@ efreet_ini_localestring_set(Efreet_Ini *ini, const char *key, const char *value)
else if (lang)
snprintf(buf, maxlen, "%s[%s]", key, lang);
else
goto error;
return;
efreet_ini_string_set(ini, buf, value);
}