Mercurial > pidgin
changeset 29959:3057fd96be81
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
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Mon, 17 May 2010 00:18:25 +0000 |
parents | b06f69ada7a5 |
children | 815bd8b41638 |
files | pidgin/gtksession.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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);