Enlightenment CVS committal

Author  : lofwyrm
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_module.c 


Log Message:
Fixes a SEGV caused by double free of *name string when loading a module 
through IPC
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_module.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -3 -r1.28 -r1.29
--- e_module.c  25 May 2005 08:08:44 -0000      1.28
+++ e_module.c  15 Jun 2005 22:02:52 -0000      1.29
@@ -94,7 +94,7 @@
        modpath = e_path_find(path_modules, buf);
      }
    else
-     modpath = name;
+     modpath = strdup(name);
    if (!modpath)
      {
        e_error_dialog_show(_("Error loading Module"),




-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to