Enlightenment CVS committal Author : rbdpngn Project : e17 Module : libs/ecore
Dir : e17/libs/ecore/src/lib/ecore Modified Files: ecore_hash.c Log Message: Fix return value on ecore hash when key already exists in hash. =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_hash.c,v retrieving revision 1.24 retrieving revision 1.25 diff -u -3 -r1.24 -r1.25 --- ecore_hash.c 12 Jan 2006 03:01:58 -0000 1.24 +++ ecore_hash.c 15 Feb 2006 05:06:01 -0000 1.25 @@ -147,8 +147,10 @@ CHECK_PARAM_POINTER_RETURN("hash", hash, FALSE); node = _ecore_hash_get_node(hash, key); - if (node) + if (node) { node->value = value; + ret = TRUE; + } else { node = _ecore_hash_node_new(key, value); if (node) ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs