pedantic free() here to shut up analyzers

SVN revision: 80829
This commit is contained in:
Mike Blumenkrantz 2012-12-13 11:56:22 +00:00
parent b51d7c6eda
commit 1358b91d2b
1 changed files with 5 additions and 1 deletions

View File

@ -264,7 +264,11 @@ e_init_init(void)
num = 0;
roots = ecore_x_window_root_list(&num);
if ((!roots) || (num <= 0)) return 0;
if ((!roots) || (num <= 0))
{
free(roots);
return 0;
}
root = roots[0];
_e_init_root_win = root;