Changeset 11236 for trunk/libtransmission/rpcimpl.c
- Timestamp:
- Sep 19, 2010, 8:36:31 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/rpcimpl.c
r11228 r11236 873 873 && tr_bencGetStr( pair[1], &newval ) 874 874 && tr_urlIsValid( newval, -1 ) 875 && pos < n ) 875 && pos < n 876 && pos >= 0 ) 876 877 { 877 878 tr_free( trackers[pos].announce ); … … 917 918 { 918 919 int64_t pos; 919 if( tr_bencGetInt( val, &pos ) && pos < n ) 920 921 if( tr_bencGetInt( val, &pos ) 922 && pos < n 923 && pos >= 0 ) 920 924 tids[t++] = pos; 921 925 }
Note: See TracChangeset
for help on using the changeset viewer.