diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-10-06 23:19:39 -0700 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-10-06 23:19:39 -0700 |
commit | c1d40e7ee369e7a6b7f3ab167a50f99bfdcce29e (patch) | |
tree | 48cfc949d5bd0e87eeaed41e81f3ca5145ee1034 /protocols/msn/soap.c | |
parent | 385fbc4b9624f944691c73a8b4618f069e54bd11 (diff) |
Fixed some memory leaks.
Diffstat (limited to 'protocols/msn/soap.c')
-rw-r--r-- | protocols/msn/soap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/msn/soap.c b/protocols/msn/soap.c index 0ae6ebf6..e289de69 100644 --- a/protocols/msn/soap.c +++ b/protocols/msn/soap.c @@ -440,6 +440,7 @@ static int msn_soap_passport_sso_free_data( struct msn_soap_req_data *soap_req ) g_free( sd->secret ); g_free( sd->error ); g_free( sd->redirect ); + g_free( sd ); return MSN_SOAP_OK; } |