more strange things in ecore_list.c
in list creation (ecore_list_net)
if (!ecore_list_init(list)) {
FREE(list);
return NULL;
}
because above condition can't be true this lines could be changed to:
ecore_list_init(list);
or simplier to:
memset(list, 0, sizeof(Ecore_List));
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel