diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-06-08 23:22:16 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-06-08 23:22:16 +0100 |
commit | d50e22f72987597152198811a22e50a97a902bcc (patch) | |
tree | e6bca75114214dd7669bd91c9d977f50e8c09390 /protocols/twitter | |
parent | f1cea66ac5fcd860b2702e6b8ab01fcb79179bd4 (diff) | |
parent | 04a927cb733e2c47424569550a2faeb108094636 (diff) |
Merging memory leak fixes from devel, time to find the ui-fix-specific
leaks.
Diffstat (limited to 'protocols/twitter')
-rw-r--r-- | protocols/twitter/twitter.c | 2 |
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 ); } |