(trunk libT) fix r8394 oops reported by Ryoujin. hooray for having many eyes
This commit is contained in:
parent
3827d80cd8
commit
8807c286c0
|
@ -461,13 +461,13 @@ deleteTimers( struct tr_peerMgr * m )
|
||||||
if( m->bandwidthTimer )
|
if( m->bandwidthTimer )
|
||||||
tr_timerFree( &m->bandwidthTimer );
|
tr_timerFree( &m->bandwidthTimer );
|
||||||
|
|
||||||
if( m->rechokeTimer == NULL )
|
if( m->rechokeTimer )
|
||||||
tr_timerFree( &m->rechokeTimer );
|
tr_timerFree( &m->rechokeTimer );
|
||||||
|
|
||||||
if( m->reconnectTimer == NULL )
|
if( m->reconnectTimer )
|
||||||
tr_timerFree( &m->reconnectTimer );
|
tr_timerFree( &m->reconnectTimer );
|
||||||
|
|
||||||
if( m->refillUpkeepTimer == NULL )
|
if( m->refillUpkeepTimer )
|
||||||
tr_timerFree( &m->refillUpkeepTimer );
|
tr_timerFree( &m->refillUpkeepTimer );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue