- Timestamp:
- 2010-03-20T21:58:04Z (15 years ago)
- Branches:
- master
- Children:
- bc090f0
- Parents:
- e5a8118
- Location:
- protocols/msn
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/msn.c
re5a8118 rffb6dea 101 101 102 102 g_free( md->passport_token ); 103 g_free( md->lock_key ); 103 104 104 105 g_free( md ); -
protocols/msn/soap.c
re5a8118 rffb6dea 103 103 http_req, msn_soap_handle_response, soap_req ); 104 104 105 g_free( http_req ); 106 105 107 return soap_req->http_req != NULL; 106 108 } … … 123 125 st = soap_req->handle_response( soap_req ); 124 126 127 g_free( soap_req->url ); 128 g_free( soap_req->action ); 129 g_free( soap_req->payload ); 130 soap_req->url = soap_req->action = soap_req->payload = NULL; 131 125 132 if( st == MSN_SOAP_RETRY && --soap_req->ttl ) 126 133 msn_soap_send_request( soap_req ); … … 128 135 { 129 136 soap_req->free_data( soap_req ); 130 g_free( soap_req->url );131 g_free( soap_req->action );132 g_free( soap_req->payload );133 137 g_free( soap_req ); 134 138 } -
protocols/msn/soap.h
re5a8118 rffb6dea 69 69 "<soap:Body>" \ 70 70 "<MessageType xmlns=\"http://messenger.msn.com/ws/2004/09/oim/\">text</MessageType>" \ 71 "<Content xmlns=\"http://messenger.msn.com/ws/2004/09/oim/\">MIME-Version: 1.0\r\n" \ 71 "<Content xmlns=\"http://messenger.msn.com/ws/2004/09/oim/\">" \ 72 "MIME-Version: 1.0\r\n" \ 72 73 "Content-Type: text/plain; charset=UTF-8\r\n" \ 73 74 "Content-Transfer-Encoding: base64\r\n" \
Note: See TracChangeset
for help on using the changeset viewer.