Changeset 12159
- Timestamp:
- Mar 14, 2011, 2:39:11 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/announcer-udp.c
r12152 r12159 60 60 sockfd = -1; 61 61 62 if( sockfd < 62 if( sockfd < 0 ) { 63 63 errno = EAFNOSUPPORT; 64 64 return -1; … … 561 561 tau_announce_request_fail( tracker->session, req, FALSE, TRUE, NULL ); 562 562 tau_announce_request_free( req ); 563 tr_ptrArrayRemove( reqs, i-- ); 563 tr_ptrArrayRemove( reqs, i ); 564 --i; 565 --n; 564 566 } 565 567 } … … 578 580 tau_scrape_request_fail( tracker->session, req, FALSE, TRUE, NULL ); 579 581 tau_scrape_request_free( req ); 580 tr_ptrArrayRemove( reqs, i-- ); 582 tr_ptrArrayRemove( reqs, i ); 583 --i; 584 --n; 581 585 } 582 586 }
Note: See TracChangeset
for help on using the changeset viewer.