if alloca fails you're screwed anyway, so not much point checking for it

SVN revision: 56089
This commit is contained in:
Mike Blumenkrantz 2011-01-14 03:28:27 +00:00
parent 01f1362c4e
commit 97585ca507
1 changed files with 0 additions and 2 deletions

View File

@ -143,8 +143,6 @@ static void _dir_list_cb(const char *name, const char *path, void *data)
length = strlen(path) + strlen(name) + 2;
file = alloca(sizeof (char) * length);
if (!file)
return;
snprintf(file, length, "%s/%s", path, name);
m = eina_module_new(file);