1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-09 13:50:00 +00:00

(trunk libT) Biaaru: repeat the TR_DEBUG_FD test on this please :)

This commit is contained in:
Charles Kerr 2009-02-04 18:19:37 +00:00
parent 4e8dcad90b
commit 93642c5c4d
2 changed files with 4 additions and 0 deletions

View file

@ -496,6 +496,7 @@ tr_sessionInitImpl( void * vdata )
tr_setConfigDir( session, data->configDir );
tr_trackerSessionInit( session );
assert( session->tracker != NULL );
session->peerMgr = tr_peerMgrNew( session );
@ -577,6 +578,7 @@ tr_sessionInitImpl( void * vdata )
session->web = tr_webInit( session );
metainfoLookupRescan( session );
session->isWaiting = FALSE;
dbgmsg( "returning session %p; session->tracker is %p", session, session->tracker );
}
/***

View file

@ -880,6 +880,8 @@ invokeRequest( void * vreq )
assert( req->reqtype >= 0 );
assert( req->reqtype < TR_NUM_REQ_TYPES );
dbgmsg( NULL, "invokeRequest got session %p, tracker %p", req->session, req->session->tracker );
t = findTracker( req->session, req->torrentId );
if( t != NULL )