1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-30 19:03:04 +00:00

fix tab damage

This commit is contained in:
Charles Kerr 2008-10-27 17:35:22 +00:00
parent a561193371
commit 11f240365e
2 changed files with 32 additions and 32 deletions

View file

@ -39,7 +39,7 @@ GTK+ Translators:
See the po files for a full list.
Third-Party Resources:
Niels Provos for libevent <http://monkey.org/~provos/libevent/>
Nick Mathewson and Niels Provos for libevent. <http://monkey.org/~provos/libevent/>
Thomas Bernard for MiniUPnP and libnatpmp. <http://miniupnp.tuxfamily.org/>
The Growl Development Team for Growl. <http://growl.info/>
Andy Matuschak for Sparkle. <http://sparkle.andymatuschak.org/>

View file

@ -1555,7 +1555,7 @@ tr_torrentReqIsValid( const tr_torrent * tor,
if( index >= tor->info.pieceCount )
err = 1;
if( length < 1 )
else if( length < 1 )
err = 2;
else if( ( offset + length ) > tr_torPieceCountBytes( tor, index ) )
err = 3;