mirror of
https://github.com/transmission/transmission
synced 2025-02-05 22:12:11 +00:00
extra paranoia to safeguard against a possible tracker crash
This commit is contained in:
parent
f96cbd3ec3
commit
c88ef608c6
1 changed files with 1 additions and 1 deletions
|
@ -563,7 +563,7 @@ onScrapeResponse( struct evhttp_request * req, void * primaryAddress )
|
|||
|
||||
tr_inf( "Got scrape response from '%s': %s",
|
||||
primaryAddress,
|
||||
(req ? req->response_code_line : "(null)") );
|
||||
( ( req && req->response_code_line ) ? req->response_code_line : "(null)") );
|
||||
|
||||
t = getExistingTracker( primaryAddress );
|
||||
tr_free( primaryAddress );
|
||||
|
|
Loading…
Reference in a new issue