pidgin: 84cafc59: The returned value from SmcVendor() shou...

nosnilmot at pidgin.im nosnilmot at pidgin.im
Sun May 16 20:25:27 EDT 2010


-----------------------------------------------------------------
Revision: 84cafc59e7d800d6d632de296e67dc18b8a39714
Ancestor: 0cb961a579828ba1b98b6e7599bf2719e7c7bebf
Author: nosnilmot at pidgin.im
Date: 2010-05-17T00:18:25
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/84cafc59e7d800d6d632de296e67dc18b8a39714

Modified files:
        pidgin/gtksession.c

ChangeLog: 

The returned value from SmcVendor() should be free'd with free() not
g_free(). I'm 99.999% sure this makes no difference at all, but I noticed
it while trying to figure out what is causing/how to fix this bug (anyone
else have any ideas?) https://bugzilla.redhat.com/show_bug.cgi?id=550566

-------------- next part --------------
============================================================
--- pidgin/gtksession.c	3709686bc6a94f50b8d1fc7ff8252f375137af26
+++ pidgin/gtksession.c	b0bc3e7ab37ee7f258c515e0320cda2264f2a4e4
@@ -346,7 +346,7 @@ pidgin_session_init(gchar *argv0, gchar 
 	purple_debug(PURPLE_DEBUG_INFO, "Session Management",
 			   "Connected to manager (%s) with client ID %s\n",
 			   tmp, client_id);
-	g_free(tmp);
+	free(tmp);
 
 	session_managed = TRUE;
 	gdk_set_sm_client_id(client_id);


More information about the Commits mailing list