Don't know about everyone else, but I use ecore_list when I can....

dh

Enlightenment SVN wrote:
> Log:
>   Fix segfault when double freeing a string.
>   
>   This fix makes it work again. However, ecore plugin should really be 
> rewritten
>   or we should start considering eina_module instead.
>   
> Author:       ulisses
> Date:         2008-12-21 18:30:17 -0800 (Sun, 21 Dec 2008)
> New Revision: 38275
> 
> Modified:
>   trunk/ecore/src/lib/ecore/ecore_plugin.c 
> 
> Modified: trunk/ecore/src/lib/ecore/ecore_plugin.c
> ===================================================================
> --- trunk/ecore/src/lib/ecore/ecore_plugin.c  2008-12-22 00:23:41 UTC (rev 
> 38274)
> +++ trunk/ecore/src/lib/ecore/ecore_plugin.c  2008-12-22 02:30:17 UTC (rev 
> 38275)
> @@ -249,6 +249,6 @@
>  static Eina_Bool
>  _hash_keys(const Eina_Hash *hash, const char *key, void *list)
>  {
> -   ecore_list_append(list, key);
> +   ecore_list_append(list, strdup(key));
>     return EINA_TRUE;
>  }
> 
> 
> ------------------------------------------------------------------------------
> _______________________________________________
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
> 


------------------------------------------------------------------------------
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to