# HG changeset patch # User Elliott Sales de Andrade # Date 1321645024 0 # Node ID 910475e626be1383e08b6e16f40a903fd077394b # Parent e2c275816484a7d783af4ff4943b6e4ea15345d7 Fix a small leak. diff -r e2c275816484 -r 910475e626be pidgin/gtkconv-theme.c --- a/pidgin/gtkconv-theme.c Fri Nov 18 19:08:09 2011 +0000 +++ b/pidgin/gtkconv-theme.c Fri Nov 18 19:37:04 2011 +0000 @@ -381,6 +381,7 @@ if (!g_file_get_contents(file, &priv->outgoing_next_context_html, NULL, NULL)) { priv->outgoing_next_context_html = g_strdup(get_outgoing_context_html(priv, dir)); } + g_free(file); return priv->outgoing_next_context_html; }