(trunk libT) fix r8394 oops reported by Ryoujin. hooray for having many eyes

This commit is contained in:
Charles Kerr 2009-05-15 02:12:50 +00:00
parent 3827d80cd8
commit 8807c286c0
1 changed files with 3 additions and 3 deletions

View File

@ -461,13 +461,13 @@ deleteTimers( struct tr_peerMgr * m )
if( m->bandwidthTimer )
tr_timerFree( &m->bandwidthTimer );
if( m->rechokeTimer == NULL )
if( m->rechokeTimer )
tr_timerFree( &m->rechokeTimer );
if( m->reconnectTimer == NULL )
if( m->reconnectTimer )
tr_timerFree( &m->reconnectTimer );
if( m->refillUpkeepTimer == NULL )
if( m->refillUpkeepTimer )
tr_timerFree( &m->refillUpkeepTimer );
}