Enlightenment CVS committal

Author  : tsauerbeck
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_module.c 


Log Message:
don't call ecore_file_get_dir() with NULL
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_module.c,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -3 -r1.40 -r1.41
--- e_module.c  29 Sep 2005 14:11:03 -0000      1.40
+++ e_module.c  30 Sep 2005 14:10:28 -0000      1.41
@@ -174,7 +174,7 @@
 
    _e_modules = evas_list_append(_e_modules, m);
    m->name = strdup(name);
-   s = ecore_file_get_dir(modpath);
+   s = modpath ? ecore_file_get_dir(modpath) : NULL;
    if (s)
      {
        m->dir = ecore_file_get_dir(s);




-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to