mirror of
https://github.com/transmission/transmission
synced 2025-03-12 15:14:12 +00:00
fix libT crash reported in the forums
This commit is contained in:
parent
8caa113d4b
commit
3b04f824e0
1 changed files with 7 additions and 2 deletions
|
@ -882,8 +882,13 @@ tr_torrentFilesFree( tr_file_stat * files, int fileCount UNUSED )
|
||||||
tr_peer_stat *
|
tr_peer_stat *
|
||||||
tr_torrentPeers( const tr_torrent * tor, int * peerCount )
|
tr_torrentPeers( const tr_torrent * tor, int * peerCount )
|
||||||
{
|
{
|
||||||
return tr_peerMgrPeerStats( tor->handle->peerMgr,
|
tr_peer_stat * ret = NULL;
|
||||||
tor->info.hash, peerCount );
|
|
||||||
|
if( tor != NULL )
|
||||||
|
ret = tr_peerMgrPeerStats( tor->handle->peerMgr,
|
||||||
|
tor->info.hash, peerCount );
|
||||||
|
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Add table
Reference in a new issue