Changeset 37aa317
- Timestamp:
- 2010-04-13T22:09:40Z (15 years ago)
- Branches:
- master
- Children:
- 40bc82d
- Parents:
- 3254c12
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/twitter/twitter_lib.c
r3254c12 r37aa317 183 183 184 184 ic = req->data; 185 td = ic->proto_data;186 185 187 186 // Check if the connection is still active. 188 187 if( !g_slist_find( twitter_connections, ic ) ) 189 188 return; 189 190 td = ic->proto_data; 190 191 191 192 // Check if the HTTP request went well. … … 468 469 { 469 470 struct im_connection *ic = req->data; 470 struct twitter_data *td = ic->proto_data;471 struct twitter_data *td; 471 472 struct xt_parser *parser; 472 473 struct twitter_xml_list *txl; … … 475 476 if( !g_slist_find( twitter_connections, ic ) ) 476 477 return; 478 479 td = ic->proto_data; 477 480 478 481 // Check if the HTTP request went well. … … 529 532 { 530 533 struct im_connection *ic = req->data; 531 struct twitter_data *td = ic->proto_data;534 struct twitter_data *td; 532 535 struct xt_parser *parser; 533 536 struct twitter_xml_list *txl; … … 538 541 if( !g_slist_find( twitter_connections, ic ) ) 539 542 return; 540 543 544 td = ic->proto_data; 545 541 546 // Check if the HTTP request went well. 542 547 if (req->status_code != 200) {
Note: See TracChangeset
for help on using the changeset viewer.