aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/twitter/twitter.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-06-08 23:22:16 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2010-06-08 23:22:16 +0100
commitd50e22f72987597152198811a22e50a97a902bcc (patch)
treee6bca75114214dd7669bd91c9d977f50e8c09390 /protocols/twitter/twitter.c
parentf1cea66ac5fcd860b2702e6b8ab01fcb79179bd4 (diff)
parent04a927cb733e2c47424569550a2faeb108094636 (diff)
Merging memory leak fixes from devel, time to find the ui-fix-specific
leaks.
Diffstat (limited to 'protocols/twitter/twitter.c')
-rw-r--r--protocols/twitter/twitter.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/twitter/twitter.c b/protocols/twitter/twitter.c
index a5fc68ab..db893e17 100644
--- a/protocols/twitter/twitter.c
+++ b/protocols/twitter/twitter.c
@@ -235,6 +235,8 @@ static void twitter_logout( struct im_connection *ic )
if( td )
{
oauth_info_free( td->oauth_info );
+ g_free( td->url_host );
+ g_free( td->url_path );
g_free( td->pass );
g_free( td );
}