# HG changeset patch # User Stu Tomlinson # Date 1274055505 0 # Node ID 3057fd96be81db882dce374ee064b8f81422baec # Parent b06f69ada7a528f1844ef4212426c63d3d45fd5d 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 diff -r b06f69ada7a5 -r 3057fd96be81 pidgin/gtksession.c --- a/pidgin/gtksession.c Mon May 17 00:14:22 2010 +0000 +++ b/pidgin/gtksession.c Mon May 17 00:18:25 2010 +0000 @@ -346,7 +346,7 @@ 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);