diff src/gtkutils.c @ 11638:3a05b53a589e

[gaim-migrate @ 13914] Some bits'n'pieces: A bunch of memory leak fixes Fix newly created accounts to connect in the currently active global status Fix the modify account dialog to only show relevant user options etc. Update sametime to use some more of the new status stuff, it still needs more love though. Some s/online/available/ for consistency across prpls Fix a racyness in disconnecting connections that want to die (fixes the Yahoo crash when signing on somewhere else) Sorry if I caused any conflicts! committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Mon, 10 Oct 2005 17:59:48 +0000
parents c4fde4165293
children 8cb75ba77f9d
line wrap: on
line diff
--- a/src/gtkutils.c	Mon Oct 10 12:29:30 2005 +0000
+++ b/src/gtkutils.c	Mon Oct 10 17:59:48 2005 +0000
@@ -1352,12 +1352,14 @@
 gboolean
 gaim_running_gnome(void)
 {
+	gchar *tmp = g_find_program_in_path("gnome-open");
 	if ((g_getenv("GNOME_DESKTOP_SESSION_ID") != NULL) &&
-		(g_find_program_in_path("gnome-open") != NULL))
+		(tmp != NULL))
 	{
+		g_free(tmp);
 		return TRUE;
 	}
-
+	g_free(tmp);
 	return FALSE;
 }