I Need help to help a few other people whom are getting a segmentation
fault when they try to run engage. They get all the required files
to run engage, but end up with this error. Anyone had this problem? Here is what they get from the terminal
am a system tray segmentation fault
I fixed an issue with it today that could cause this behaviour - the fix is in cvs but will take a while to propagate. You could try to apply this yourself:
RCS file: /cvsroot/enlightenment/misc/engage/src/icon.c,v
retrieving revision 1.42
diff -r1.42 icon.c
40c40,41
< ret->data.applnk.command = strdup(app->exe);
---
> if (app->exe)
> ret->data.applnk.command = strdup(app->exe);
422,423c423,427
< edje_object_signal_emit(obj, "engage,app,open,ok", "");
< ecore_exe_run(icon->data.applnk.command, NULL);
---
> if (icon->data.applnk.command) {
> edje_object_signal_emit(obj, "engage,app,open,ok", "");
> ecore_exe_run(icon->data.applnk.command, NULL);
> } else
> printf("ERROR: no command stored in icon\n");------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ enlightenment-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-users
