Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir     : e17/libs/evas/src/lib/data


Modified Files:
        evas_list.c 


Log Message:


and fix that too

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/evas/src/lib/data/evas_list.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- evas_list.c 1 Feb 2005 03:04:26 -0000       1.9
+++ evas_list.c 1 Feb 2005 03:12:26 -0000       1.10
@@ -703,7 +703,7 @@
    Evas_List *l;
 
    /* check for non-existing nodes */
-   if ((n < 0) || (n > list->count - 1) || (!list)) return NULL;
+   if ((!list) || (n < 0) || (n > list->count - 1)) return NULL;
 
    /* if the node is in the 2nd half of the list, search from the end
     * else, search from the beginning.




-------------------------------------------------------
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to