Changeset 1169
- Timestamp:
- Dec 7, 2006, 9:56:36 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/multitracker/libtransmission/transmission.c
r1168 r1169 720 720 for( i = 0; i < inf->trackerAnnounceTiers; i++ ) 721 721 { 722 currentAnnounce = inf->trackerAnnounceList[i]; 723 while( currentAnnounce != NULL ) 722 for( currentAnnounce = inf->trackerAnnounceList[i]; currentAnnounce != NULL; currentAnnounce = nextAnnounce ) 724 723 { 725 724 nextAnnounce = currentAnnounce->nextItem; 726 725 free( currentAnnounce ); 727 currentAnnounce = nextAnnounce;728 726 } 729 727 }
Note: See TracChangeset
for help on using the changeset viewer.