Changeset a26af5c
- Timestamp:
- 2010-07-13T20:13:46Z (14 years ago)
- Branches:
- master
- Children:
- e693ac2
- Parents:
- 00540d4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/twitter/twitter_lib.c
r00540d4 ra26af5c 66 66 static void txu_free(struct twitter_xml_user *txu) 67 67 { 68 if (txu == NULL) 69 return; 68 70 g_free(txu->name); 69 71 g_free(txu->screen_name); … … 89 91 { 90 92 GSList *l; 93 if (txl == NULL) 94 return; 91 95 for ( l = txl->list; l ; l = g_slist_next(l) ) 92 96 if (txl->type == TXL_STATUS) … … 473 477 { 474 478 status = l->data; 479 if (status->user == NULL || status->text == NULL) 480 continue; 481 475 482 twitter_add_buddy(ic, status->user->screen_name, status->user->name); 476 483
Note: See TracChangeset
for help on using the changeset viewer.