discomfitor pushed a commit to branch master. http://git.enlightenment.org/misc/entrance.git/commit/?id=fe9f5b09c690f13959c4dfcd7afcf4f08480e228
commit fe9f5b09c690f13959c4dfcd7afcf4f08480e228 Author: Mike Blumenkrantz <[email protected]> Date: Sun May 4 23:02:15 2014 -0400 fix double free on shutdown fun fact: freeing things on shutdown like this is just wasted lines of code --- src/daemon/entrance.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/daemon/entrance.c b/src/daemon/entrance.c index 5922bb8..64fdfca 100644 --- a/src/daemon/entrance.c +++ b/src/daemon/entrance.c @@ -412,7 +412,6 @@ main (int argc, char ** argv) ecore_shutdown(); PT("session shutdown\n"); entrance_session_shutdown(); - free(dname); if (entrance_session_logged_get()) { PT("user logged, waiting...\n"); --
