]> granicus.if.org Git - transmission/commitdiff
minor text cleanup
authorCharles Kerr <charles@transmissionbt.com>
Fri, 1 Aug 2008 16:43:22 +0000 (16:43 +0000)
committerCharles Kerr <charles@transmissionbt.com>
Fri, 1 Aug 2008 16:43:22 +0000 (16:43 +0000)
22 files changed:
libtransmission/Makefile.am
libtransmission/bencode.c
libtransmission/completion.c
libtransmission/crypto.c
libtransmission/fdlimit.c
libtransmission/handshake.c
libtransmission/inout.c
libtransmission/list.c
libtransmission/makemeta.c
libtransmission/peer-io.c
libtransmission/peer-mgr.c
libtransmission/peer-msgs.c
libtransmission/ptrarray.c
libtransmission/publish.c
libtransmission/ratecontrol.c
libtransmission/rpc.c
libtransmission/session.c
libtransmission/stats.c
libtransmission/torrent-ctor.c
libtransmission/torrent.c
libtransmission/utils.c
libtransmission/verify.c

index 4e0cc6abb5fc8c99d0a16a902bd0073e691dbc8d..8d2c95b61427b9427ce42be998434eed9f5dce5e 100644 (file)
@@ -1,5 +1,5 @@
 AM_CPPFLAGS = -I. -I$(top_srcdir) -I$(top_srcdir)/third-party/ -D__TRANSMISSION__ $(LIBEVENT_CPPFLAGS)
-AM_CFLAGS = $(OPENSSL_CFLAGS) $(LIBCURL_CFLAGS) $(PTHREAD_CFLAGS)
+AM_CFLAGS = $(LIBCURL_CFLAGS) $(OPENSSL_CFLAGS) $(PTHREAD_CFLAGS)
 
 noinst_LIBRARIES = libtransmission.a
 
@@ -110,8 +110,8 @@ APPS_LDADD = \
     $(top_builddir)/third-party/libnatpmp/libnatpmp.a \
     $(top_builddir)/third-party/libevent/libevent.la \
     $(INTLLIBS) \
-    $(OPENSSL_LIBS) \
     $(LIBCURL_LIBS) \
+    $(OPENSSL_LIBS) \
     $(PTHREAD_LIBS) \
     -lm
 
index bed62a517c0fc83a56f51995e8ff1925b5350210..f3940cf43af5dc50417ab9325267085d782f6ee0 100644 (file)
@@ -33,7 +33,7 @@
 int
 tr_bencIsType( const tr_benc * val, int type )
 {
-    return ( ( val != NULL ) && ( val->type == type ) );
+    return ( ( val ) && ( val->type == type ) );
 }
 
 static int
@@ -176,14 +176,14 @@ getNode( tr_benc * top, tr_ptrArray * parentStack, int type )
 {
     tr_benc * parent;
 
-    assert( top != NULL );
-    assert( parentStack != NULL );
+    assert( top );
+    assert( parentStack );
 
     if( tr_ptrArrayEmpty( parentStack ) )
         return top;
 
     parent = tr_ptrArrayBack( parentStack );
-    assert( parent != NULL );
+    assert( parent );
 
     /* dictionary keys must be strings */
     if( ( parent->type == TYPE_DICT )
@@ -300,7 +300,7 @@ tr_bencParse( const void     * buf_in,
 
     err = !isSomething( top ) || !tr_ptrArrayEmpty( parentStack );
 
-    if( !err && ( setme_end != NULL ) )
+    if( !err && setme_end )
         *setme_end = buf;
 
     tr_ptrArrayFree( parentStack, NULL );
@@ -903,7 +903,7 @@ tr_bencSave( const tr_benc * top, int * len )
     walkFuncs.containerEndFunc = saveContainerEndFunc;
     bencWalk( top, &walkFuncs, out );
     
-    if( len != NULL )
+    if( len )
         *len = EVBUFFER_LENGTH( out );
     ret = tr_strndup( (char*) EVBUFFER_DATA( out ), EVBUFFER_LENGTH( out ) );
     evbuffer_free( out );
@@ -1205,7 +1205,7 @@ tr_bencSaveAsJSON( const tr_benc * top, int * len )
     
     if( EVBUFFER_LENGTH( data.out ) )
         evbuffer_add_printf( data.out, "\n" );
-    if( len != NULL )
+    if( len )
         *len = EVBUFFER_LENGTH( data.out );
     ret = tr_strndup( (char*) EVBUFFER_DATA( data.out ), EVBUFFER_LENGTH( data.out ) );
     evbuffer_free( data.out );
index 0dad5a6c80f7ac194f1504ecc5f326c73f0f397e..c455ee1d72b4016163efec86879c2db5c04664c0 100644 (file)
@@ -163,7 +163,7 @@ tr_cpPieceRem( tr_completion * cp, tr_piece_index_t piece )
     const tr_block_index_t end = start + tr_torPieceCountBlocks( tor, piece );
     tr_block_index_t block;
 
-    assert( cp != NULL );
+    assert( cp );
     assert( piece < tor->info.pieceCount );
     assert( start < tor->blockCount );
     assert( start <= end );
index 7806f3f35d9770b98d46835b79a54141674cd352..ab24eab595dd9320ed4de48854e336f4a89c0d76 100644 (file)
@@ -241,7 +241,7 @@ tr_cryptoSetTorrentHash( tr_crypto     * crypto,
 {
     crypto->torrentHashIsSet = hash ? 1 : 0;
 
-    if( hash != NULL )
+    if( hash )
         memcpy( crypto->torrentHash, hash, SHA_DIGEST_LENGTH );
     else
         memset( crypto->torrentHash, 0, SHA_DIGEST_LENGTH );
@@ -250,7 +250,7 @@ tr_cryptoSetTorrentHash( tr_crypto     * crypto,
 const uint8_t*
 tr_cryptoGetTorrentHash( const tr_crypto * crypto )
 {
-    assert( crypto != NULL );
+    assert( crypto );
     assert( crypto->torrentHashIsSet );
 
     return crypto->torrentHash;
@@ -259,7 +259,7 @@ tr_cryptoGetTorrentHash( const tr_crypto * crypto )
 int
 tr_cryptoHasTorrentHash( const tr_crypto * crypto )
 {
-    assert( crypto != NULL );
+    assert( crypto );
 
     return crypto->torrentHashIsSet ? 1 : 0;
 }
index 4dccdd4386dc7938dd545be80bd284e9771df404..2da77d3f3690b007864112dc556f268055f2f750 100644 (file)
@@ -385,8 +385,8 @@ tr_fdSocketAccept( int b, struct in_addr * addr, tr_port_t * port )
     unsigned int len;
     struct sockaddr_in sock;
 
-    assert( addr != NULL );
-    assert( port != NULL );
+    assert( addr );
+    assert( port );
 
     tr_lockLock( gFd->lock );
     if( gFd->normal < getSocketMax( gFd ) )
index 06ced31ec112f931e9ab3f90a42a24759723ec1a..96af0ea33a9089cf13ec2a91769192ef25b3dfc4 100644 (file)
@@ -286,7 +286,7 @@ sendYa( tr_handshake * handshake )
     /* add our public key (Ya) */
     public_key = tr_cryptoGetMyPublicKey( handshake->crypto, &len );
     assert( len == KEY_LEN );
-    assert( public_key != NULL );
+    assert( public_key );
     evbuffer_add( outbuf, public_key, len );
 
     /* add some bullshit padding */
@@ -1057,8 +1057,8 @@ tr_handshakeNew( tr_peerIo           * io,
 const struct in_addr *
 tr_handshakeGetAddr( const struct tr_handshake * handshake, uint16_t * port )
 {
-    assert( handshake != NULL );
-    assert( handshake->io != NULL );
+    assert( handshake );
+    assert( handshake->io );
 
     return tr_peerIoGetAddress( handshake->io, port );
 }
index e516ba4400979f7b1bc33e566d68651f37bc7743..411d0076eebc0b173f4901fbd261e2d5c3aa37fe 100644 (file)
@@ -240,8 +240,8 @@ recalculateHash( const tr_torrent  * tor,
 
     tr_lockLock( lock );
 
-    assert( tor != NULL );
-    assert( setme != NULL );
+    assert( tor );
+    assert( setme );
     assert( pieceIndex < tor->info.pieceCount );
 
     n = tr_torPieceCountBytes( tor, pieceIndex );
index a8f27d1dafcd1dcb3f30304ef27143da9c2fb77f..a568bfc2c433dc35405748612e67c17168c90560 100644 (file)
@@ -37,7 +37,7 @@ tr_list_free( tr_list** list, TrListForeachFunc data_free_func )
     {
         tr_list *node = *list;
         *list = (*list)->next;
-        if( data_free_func != NULL )
+        if( data_free_func )
             data_free_func( node->data );
         node_free( node );
     }
@@ -125,7 +125,7 @@ void*
 tr_list_pop_front( tr_list ** list )
 {
     void * ret = NULL;
-    if( *list != NULL )
+    if( *list )
     {
         ret = (*list)->data;
         tr_list_remove_node( list, *list );
@@ -161,7 +161,7 @@ tr_list_find ( tr_list * list , const void * b, TrListCompareFunc func )
 void
 tr_list_foreach( tr_list * list, TrListForeachFunc func )
 {
-    while( list != NULL ) {
+    while( list ) {
         func( list->data );
         list = list->next;
     }
@@ -171,7 +171,7 @@ int
 tr_list_size( const tr_list * list )
 {
     int size = 0;
-    while( list != NULL ) {
+    while( list ) {
         ++size;
         list = list->next;
     }
index 54720643a9b05d22ec74e367a1b8e0718deb8c4a..f224281cbceca379253a1d35fe9a418973d2bc29 100644 (file)
@@ -262,7 +262,7 @@ getHashInfo ( tr_metainfo_builder * b )
     assert( b->abortFlag || (walk-ret == (int)(SHA_DIGEST_LENGTH*b->pieceCount)) );
     assert( b->abortFlag || !totalRemain );
 
-    if( fp != NULL )
+    if( fp )
         fclose( fp );
 
     tr_free( buf );
@@ -431,7 +431,7 @@ static void workerFunc( void * user_data )
         /* find the next builder to process */
         tr_lock * lock = getQueueLock ( handle );
         tr_lockLock( lock );
-        if( queue != NULL ) {
+        if( queue ) {
             builder = queue;
             queue = queue->nextBuilder;
         }
index 05c2aa3928f00ead4b53be8a67bdefea3fabb170..38d51dc7bda07fbe633107698705bf45807a072d 100644 (file)
@@ -80,8 +80,8 @@ static void
 didWriteWrapper( struct bufferevent * e, void * userData )
 {
     tr_peerIo * c = (tr_peerIo *) userData;
-    if( c->didWrite != NULL )
-        (*c->didWrite)( e, c->userData );
+    if( c->didWrite )
+        c->didWrite( e, c->userData );
 }
 
 static void
@@ -98,7 +98,7 @@ canReadWrapper( struct bufferevent * e, void * userData )
 
     while( !done )
     {
-        const int ret = (*c->canRead)( e, c->userData );
+        const int ret = c->canRead( e, c->userData );
 
         switch( ret )
         {
@@ -118,8 +118,8 @@ static void
 gotErrorWrapper( struct bufferevent * e, short what, void * userData )
 {
     tr_peerIo * c = userData;
-    if( c->gotError != NULL )
-        (*c->gotError)( e, what, c->userData );
+    if( c->gotError )
+        c->gotError( e, what, c->userData );
 }
 
 /**
@@ -168,8 +168,8 @@ tr_peerIoNewIncoming( struct tr_handle      * handle,
                       uint16_t                port,
                       int                     socket )
 {
-    assert( handle != NULL );
-    assert( in_addr != NULL );
+    assert( handle );
+    assert( in_addr );
     assert( socket >= 0 );
 
     return tr_peerIoNew( handle, in_addr, port,
@@ -185,10 +185,10 @@ tr_peerIoNewOutgoing( struct tr_handle      * handle,
 {
     int socket;
 
-    assert( handle != NULL );
-    assert( in_addr != NULL );
+    assert( handle );
+    assert( in_addr );
     assert( port >= 0 );
-    assert( torrentHash != NULL );
+    assert( torrentHash );
 
     socket = tr_netOpenTCP( in_addr, port, 0 );
 
@@ -211,7 +211,7 @@ io_dtor( void * vio )
 void
 tr_peerIoFree( tr_peerIo * io )
 {
-    if( io != NULL )
+    if( io )
     {
         io->canRead = NULL;
         io->didWrite = NULL;
@@ -223,8 +223,8 @@ tr_peerIoFree( tr_peerIo * io )
 tr_handle*
 tr_peerIoGetHandle( tr_peerIo * io )
 {
-    assert( io != NULL );
-    assert( io->handle != NULL );
+    assert( io );
+    assert( io->handle );
 
     return io->handle;
 }
@@ -232,9 +232,9 @@ tr_peerIoGetHandle( tr_peerIo * io )
 const struct in_addr*
 tr_peerIoGetAddress( const tr_peerIo * io, uint16_t * port )
 {
-    assert( io != NULL );
+    assert( io );
 
-    if( port != NULL )
+    if( port )
        *port = io->port;
 
     return &io->in_addr;
@@ -329,7 +329,7 @@ void
 tr_peerIoSetTorrentHash( tr_peerIo     * io,
                          const uint8_t * hash )
 {
-    assert( io != NULL );
+    assert( io );
 
     tr_cryptoSetTorrentHash( io->crypto, hash );
 }
@@ -337,8 +337,8 @@ tr_peerIoSetTorrentHash( tr_peerIo     * io,
 const uint8_t*
 tr_peerIoGetTorrentHash( tr_peerIo * io )
 {
-    assert( io != NULL );
-    assert( io->crypto != NULL );
+    assert( io );
+    assert( io->crypto );
 
     return tr_cryptoGetTorrentHash( io->crypto );
 }
@@ -346,8 +346,8 @@ tr_peerIoGetTorrentHash( tr_peerIo * io )
 int
 tr_peerIoHasTorrentHash( const tr_peerIo * io )
 {
-    assert( io != NULL );
-    assert( io->crypto != NULL );
+    assert( io );
+    assert( io->crypto );
 
     return tr_cryptoHasTorrentHash( io->crypto );
 }
@@ -360,7 +360,7 @@ void
 tr_peerIoSetPeersId( tr_peerIo     * io,
                      const uint8_t * peer_id )
 {
-    assert( io != NULL );
+    assert( io );
 
     if(( io->peerIdIsSet = peer_id != NULL ))
         memcpy( io->peerId, peer_id, 20 );
@@ -371,7 +371,7 @@ tr_peerIoSetPeersId( tr_peerIo     * io,
 const uint8_t* 
 tr_peerIoGetPeersId( const tr_peerIo * io )
 {
-    assert( io != NULL );
+    assert( io );
     assert( io->peerIdIsSet );
 
     return io->peerId;
@@ -384,7 +384,7 @@ tr_peerIoGetPeersId( const tr_peerIo * io )
 void
 tr_peerIoEnableLTEP( tr_peerIo * io, int flag )
 {
-    assert( io != NULL );
+    assert( io );
     assert( flag==0 || flag==1 );
     
     io->extendedProtocolSupported = flag;
@@ -393,7 +393,7 @@ tr_peerIoEnableLTEP( tr_peerIo * io, int flag )
 void
 tr_peerIoEnableFEXT( tr_peerIo * io, int flag )
 {
-    assert( io != NULL );
+    assert( io );
     assert( flag==0 || flag==1 );
     
     io->fastPeersSupported = flag;
@@ -402,7 +402,7 @@ tr_peerIoEnableFEXT( tr_peerIo * io, int flag )
 int
 tr_peerIoSupportsLTEP( const tr_peerIo * io )
 {
-    assert( io != NULL );
+    assert( io );
     
     return io->extendedProtocolSupported;
 }
@@ -410,7 +410,7 @@ tr_peerIoSupportsLTEP( const tr_peerIo * io )
 int
 tr_peerIoSupportsFEXT( const tr_peerIo * io )
 {
-    assert( io != NULL );
+    assert( io );
     
     return io->fastPeersSupported;
 }
@@ -456,7 +456,7 @@ void
 tr_peerIoSetEncryption( tr_peerIo * io,
                         int         encryptionMode )
 {
-    assert( io != NULL );
+    assert( io );
     assert( encryptionMode==PEER_ENCRYPTION_NONE || encryptionMode==PEER_ENCRYPTION_RC4 );
 
     io->encryptionMode = encryptionMode;
index 84ed8f2a603f9b6bf50c5c39af02bf980e55c744..754fecb83ce53b9389374edc523179e9f250b088 100644 (file)
@@ -248,11 +248,11 @@ static tr_peer*
 getExistingPeer( Torrent * torrent, const struct in_addr * in_addr )
 {
     assert( torrentIsLocked( torrent ) );
-    assert( in_addr != NULL );
+    assert( in_addr );
 
-    return (tr_peer*) tr_ptrArrayFindSorted( torrent->peers,
-                                             in_addr,
-                                             peerCompareToAddr );
+    return tr_ptrArrayFindSorted( torrent->peers,
+                                  in_addr,
+                                  peerCompareToAddr );
 }
 
 static struct peer_atom*
@@ -305,8 +305,8 @@ getPeer( Torrent * torrent, const struct in_addr * in_addr )
 static void
 peerDestructor( tr_peer * peer )
 {
-    assert( peer != NULL );
-    assert( peer->msgs != NULL );
+    assert( peer );
+    assert( peer->msgs );
 
     tr_peerMsgsUnsubscribe( peer->msgs, peer->msgsTag );
     tr_peerMsgsFree( peer->msgs );
@@ -330,7 +330,7 @@ removePeer( Torrent * t, tr_peer * peer )
     assert( torrentIsLocked( t ) );
 
     atom = getExistingAtom( t, &peer->in_addr );
-    assert( atom != NULL );
+    assert( atom );
     atom->time = time( NULL );
 
     removed = tr_ptrArrayRemoveSorted( t->peers, peer, peerCompare );
@@ -350,9 +350,9 @@ torrentDestructor( Torrent * t )
 {
     uint8_t hash[SHA_DIGEST_LENGTH];
 
-    assert( t != NULL );
+    assert( t );
     assert( !t->isRunning );
-    assert( t->peers != NULL );
+    assert( t->peers );
     assert( torrentIsLocked( t ) );
     assert( tr_ptrArrayEmpty( t->outgoingHandshakes ) );
     assert( tr_ptrArrayEmpty( t->peers ) );
@@ -480,7 +480,7 @@ getConnectedPeers( Torrent * t, int * setmeCount )
     ret = tr_new( tr_peer*, peerCount );
 
     for( i=connectionCount=0; i<peerCount; ++i )
-        if( peers[i]->msgs != NULL )
+        if( peers[i]->msgs )
             ret[connectionCount++] = peers[i];
 
     *setmeCount = connectionCount;
@@ -936,7 +936,7 @@ myHandshakeDoneCB( tr_handshake    * handshake,
     Torrent * t;
     tr_handshake * ours;
 
-    assert( io != NULL );
+    assert( io );
     assert( isConnected==0 || isConnected==1 );
 
     t = tr_peerIoHasTorrentHash( io )
@@ -946,16 +946,16 @@ myHandshakeDoneCB( tr_handshake    * handshake,
     if( tr_peerIoIsIncoming ( io ) )
         ours = tr_ptrArrayRemoveSorted( manager->incomingHandshakes,
                                         handshake, handshakeCompare );
-    else if( t != NULL )
+    else if( t )
         ours = tr_ptrArrayRemoveSorted( t->outgoingHandshakes,
                                         handshake, handshakeCompare );
     else
         ours = handshake;
 
-    assert( ours != NULL );
+    assert( ours );
     assert( ours == handshake );
 
-    if( t != NULL )
+    if( t )
         torrentLock( t );
 
     addr = tr_peerIoGetAddress( io, &port );
@@ -1000,7 +1000,7 @@ myHandshakeDoneCB( tr_handshake    * handshake,
         {
             tr_peer * peer = getExistingPeer( t, addr );
 
-            if( peer != NULL ) /* we already have this peer */
+            if( peer ) /* we already have this peer */
             {
                 tr_peerIoFree( io );
             }
@@ -1024,7 +1024,7 @@ myHandshakeDoneCB( tr_handshake    * handshake,
         }
     }
 
-    if( t != NULL )
+    if( t )
         torrentUnlock( t );
 }
 
@@ -1136,8 +1136,8 @@ tr_peerMgrSetBlame( tr_peerMgr     * manager,
 int
 tr_pexCompare( const void * va, const void * vb )
 {
-    const tr_pex * a = (const tr_pex *) va;
-    const tr_pex * b = (const tr_pex *) vb;
+    const tr_pex * a = va;
+    const tr_pex * b = vb;
     int i = memcmp( &a->in_addr, &b->in_addr, sizeof(struct in_addr) );
     if( i ) return i;
     if( a->port < b->port ) return -1;
@@ -1210,7 +1210,7 @@ tr_peerMgrStartTorrent( tr_peerMgr     * manager,
 
     t = getExistingTorrent( manager, torrentHash );
 
-    assert( t != NULL );
+    assert( t );
     assert( ( t->isRunning != 0 ) == ( t->reconnectTimer != NULL ) );
     assert( ( t->isRunning != 0 ) == ( t->rechokeTimer != NULL ) );
 
@@ -1274,7 +1274,7 @@ tr_peerMgrAddTorrent( tr_peerMgr * manager,
 
     managerLock( manager );
 
-    assert( tor != NULL );
+    assert( tor );
     assert( getExistingTorrent( manager, tor->info.hash ) == NULL );
 
     t = torrentConstructor( manager, tor );
@@ -1292,7 +1292,7 @@ tr_peerMgrRemoveTorrent( tr_peerMgr     * manager,
     managerLock( manager );
 
     t = getExistingTorrent( manager, torrentHash );
-    assert( t != NULL );
+    assert( t );
     stopTorrent( t );
     tr_ptrArrayRemoveSorted( manager->torrents, t, torrentCompare );
     torrentDestructor( t );
@@ -1905,7 +1905,7 @@ reconnectPulse( void * vtorrent )
                                                             myHandshakeDoneCB,
                                                             mgr );
 
-                assert( tr_peerIoGetTorrentHash( io ) != NULL );
+                assert( tr_peerIoGetTorrentHash( io ) );
 
                 ++newConnectionsThisSecond;
 
index 843df36de6d010d5544b3b5d25966d0cf244dad9..cd3d9d4ea7c991c3b2bd0dc96abf08fe7e1c83c1 100644 (file)
@@ -336,7 +336,7 @@ myDebug( const char * file, int line,
          const char * fmt, ... )
 {
     FILE * fp = tr_getLog( );
-    if( fp != NULL )
+    if( fp )
     {
         va_list args;
         char timestr[64];
@@ -551,7 +551,7 @@ isPeerInteresting( const tr_peermsgs * msgs )
 static void
 sendInterest( tr_peermsgs * msgs, int weAreInterested )
 {
-    assert( msgs != NULL );
+    assert( msgs );
     assert( weAreInterested==0 || weAreInterested==1 );
 
     msgs->info->clientIsInterested = weAreInterested;
@@ -585,8 +585,8 @@ tr_peerMsgsSetChoke( tr_peermsgs * msgs, int choke )
 {
     const time_t fibrillationTime = time(NULL) - MIN_CHOKE_PERIOD_SEC;
 
-    assert( msgs != NULL );
-    assert( msgs->info != NULL );
+    assert( msgs );
+    assert( msgs->info );
     assert( choke==0 || choke==1 );
 
     if( msgs->info->chokeChangedAt > fibrillationTime )
@@ -621,7 +621,7 @@ static void
 sendFastSuggest( tr_peermsgs * msgs,
                  uint32_t      pieceIndex )
 {
-    assert( msgs != NULL );
+    assert( msgs );
     
     if( tr_peerIoSupportsFEXT( msgs->io ) )
     {
@@ -633,7 +633,7 @@ sendFastSuggest( tr_peermsgs * msgs,
 static void
 sendFastHave( tr_peermsgs * msgs, int all )
 {
-    assert( msgs != NULL );
+    assert( msgs );
     
     if( tr_peerIoSupportsFEXT( msgs->io ) )
     {
@@ -651,7 +651,7 @@ sendFastReject( tr_peermsgs * msgs,
                 uint32_t      offset,
                 uint32_t      length )
 {
-    assert( msgs != NULL );
+    assert( msgs );
 
     if( tr_peerIoSupportsFEXT( msgs->io ) )
     {
@@ -684,7 +684,7 @@ static void
 sendFastAllowed( tr_peermsgs * msgs,
                  uint32_t      pieceIndex)
 {
-    assert( msgs != NULL );
+    assert( msgs );
     
     if( tr_peerIoSupportsFEXT( msgs->io ) )
     {
@@ -850,8 +850,8 @@ tr_peerMsgsAddRequest( tr_peermsgs       * msgs,
 {
     struct peer_request req;
 
-    assert( msgs != NULL );
-    assert( msgs->torrent != NULL );
+    assert( msgs );
+    assert( msgs->torrent );
     assert( piece < msgs->torrent->info.pieceCount );
 
     /**
@@ -1492,8 +1492,8 @@ clientGotBlock( tr_peermsgs                * msgs,
     tr_torrent * tor = msgs->torrent;
     const tr_block_index_t block = _tr_block( tor, req->index, req->offset );
 
-    assert( msgs != NULL );
-    assert( req != NULL );
+    assert( msgs );
+    assert( req );
 
     if( req->length != tr_torBlockCountBytes( msgs->torrent, block ) )
     {
@@ -1907,8 +1907,8 @@ tr_peerMsgsNew( struct tr_torrent * torrent,
 {
     tr_peermsgs * m;
 
-    assert( info != NULL );
-    assert( info->io != NULL );
+    assert( info );
+    assert( info->io );
 
     m = tr_new0( tr_peermsgs, 1 );
     m->publisher = tr_publisherNew( );
@@ -1952,7 +1952,7 @@ tr_peerMsgsNew( struct tr_torrent * torrent,
 void
 tr_peerMsgsFree( tr_peermsgs* msgs )
 {
-    if( msgs != NULL )
+    if( msgs )
     {
         tr_timerFree( &msgs->pulseTimer );
         tr_timerFree( &msgs->rateTimer );
index 15d26e6b4e6fb17aabf6880e238d349f6c90660b..4c3e2602fd53ca69a1e9bb06160f05b813b033c6 100644 (file)
@@ -56,9 +56,9 @@ tr_ptrArrayForeach( tr_ptrArray * t, PtrArrayForeachFunc func )
 {
     int i;
 
-    assert( t != NULL );
-    assert( t->items != NULL );
-    assert( func != NULL );
+    assert( t );
+    assert( t->items );
+    assert( func );
 
     for( i=0; i<t->n_items; ++i )
         func( t->items[i] );
@@ -67,10 +67,10 @@ tr_ptrArrayForeach( tr_ptrArray * t, PtrArrayForeachFunc func )
 void
 tr_ptrArrayFree( tr_ptrArray * t, PtrArrayForeachFunc func )
 {
-    assert( t != NULL );
-    assert( t->items != NULL );
+    assert( t );
+    assert( t->items );
 
-    if( func != NULL )
+    if( func )
         tr_ptrArrayForeach( t, func );
 
     tr_free( t->items );
@@ -93,7 +93,7 @@ tr_ptrArrayBase( tr_ptrArray * t )
 void*
 tr_ptrArrayNth( tr_ptrArray* t, int i )
 {
-    assert( t != NULL  );
+    assert( t );
     assert( i >= 0 );
     assert( i < t->n_items );
 
index fdf2b19d59944a8111fc3613ff5f5f149921c2b0..5c9152e81db73b6ad68675b9658526047ddb0508 100644 (file)
@@ -35,8 +35,8 @@ tr_publisherNew( void )
 void
 tr_publisherFree( tr_publisher_t ** p )
 {
-    assert( p != NULL );
-    assert( *p != NULL );
+    assert( p );
+    assert( *p );
 
     tr_list_free( &(*p)->list, NULL );
     tr_free( *p );
index cdf6c6e2cd8e2a3d38ba9655eb2aae71b1a33203..fd11114cd44585a58e24d68f0b748690743c8b88 100644 (file)
@@ -96,7 +96,7 @@ tr_rcBytesLeft( const tr_ratecontrol * r )
 {
     size_t bytes = 0;
 
-    if( r != NULL )
+    if( r )
     {
         const float cur = rateForInterval( r, SHORT_INTERVAL_MSEC );
         const float max = r->limit;
index f77b9db76cc084e03c95f7fd64bb0cac063a401f..191bf0520c1bed90555fa5d8bec008c6aa46be10 100644 (file)
@@ -33,7 +33,7 @@
 static void
 notify( tr_handle * session, int type, tr_torrent * tor )
 {
-    if( session->rpc_func != NULL )
+    if( session->rpc_func )
         session->rpc_func( session, type, tor, session->rpc_func_user_data );
 }
 
index 921f658314c5b1cec7e1cb9654fa3d154209fa5c..ae4ebe2899b2841887557f2ebb4e1c25a898cafd 100644 (file)
@@ -83,7 +83,7 @@ tr_getPeerId( void )
 tr_encryption_mode
 tr_sessionGetEncryption( tr_session * session )
 {
-    assert( session != NULL );
+    assert( session );
 
     return session->encryptionMode;
 }
@@ -91,7 +91,7 @@ tr_sessionGetEncryption( tr_session * session )
 void
 tr_sessionSetEncryption( tr_session * session, tr_encryption_mode mode )
 {
-    assert( session != NULL );
+    assert( session );
     assert( mode==TR_ENCRYPTION_PREFERRED
          || mode==TR_ENCRYPTION_REQUIRED
          || mode==TR_PLAINTEXT_PREFERRED );
@@ -392,7 +392,7 @@ tr_sessionSetPeerPort( tr_handle * handle, int port )
 int
 tr_sessionGetPeerPort( const tr_handle * h )
 {
-    assert( h != NULL );
+    assert( h );
     return tr_sharedGetPeerPort( h->shared );
 }
 
@@ -844,7 +844,7 @@ tr_sessionSetTorrentFile( tr_handle    * h,
                                              h->metainfoLookupCount,
                                              sizeof( struct tr_metainfo_lookup ),
                                              compareHashStringToLookupEntry );
-    if( l != NULL )
+    if( l )
     {
         if( l->filename != filename )
         {
index 058032eac11cc852c539dc412da75921b6814f4d..1e77c2b1d894d947d3e690d889bcd091bed0cdb7 100644 (file)
@@ -158,7 +158,7 @@ tr_sessionGetStats( const tr_handle   * handle,
                     tr_session_stats  * setme )
 {
     const struct tr_stats_handle * stats = getStats( handle );
-    assert( stats != NULL );
+    assert( stats );
     *setme = stats->single;
     setme->secondsActive = time( NULL ) - stats->startTime;
     updateRatio( setme );
@@ -169,7 +169,7 @@ tr_sessionGetCumulativeStats( const tr_handle   * handle,
                               tr_session_stats  * setme )
 {
     const struct tr_stats_handle * stats = getStats( handle );
-    assert( stats != NULL );
+    assert( stats );
     tr_session_stats current;
     tr_sessionGetStats( handle, &current );
     addStats( setme, &stats->old, &current );
index 697aacaf5350c45f587a84c7618a991967aa6ff5..b808c59873e51b4df36c46eed86cee74312fd0c9 100644 (file)
@@ -107,7 +107,7 @@ tr_ctorSetMetainfoFromFile( tr_ctor        * ctor,
     /* if no `name' field was set, then set it from the filename */
     if( ctor->isSet_metainfo ) {
         tr_benc * info = tr_bencDictFindType( &ctor->metainfo, "info", TYPE_DICT );
-        if( info != NULL ) {
+        if( info ) {
             tr_benc * name = tr_bencDictFindFirst( info, "name.utf-8", "name", NULL );
             if( name == NULL )
                 name = tr_bencDictAdd( info, "name" );
index 5b4ff76749f3a4c133977a836b2199d4088ccaff..dea7f9177389395635f4a199a88340d278661ee1 100644 (file)
@@ -232,7 +232,7 @@ onTrackerResponse( void * tracker UNUSED, void * vevent, void * user_data )
 static int
 getBytePiece( const tr_info * info, uint64_t byteOffset )
 {
-    assert( info != NULL );
+    assert( info );
     assert( info->pieceSize != 0 );
 
     return byteOffset / info->pieceSize;
@@ -244,7 +244,7 @@ initFilePieces ( tr_info * info, tr_file_index_t fileIndex )
     tr_file * file;
     uint64_t firstByte, lastByte;
 
-    assert( info != NULL );
+    assert( info );
     assert( fileIndex < info->fileCount );
 
     file = &info->files[fileIndex];
@@ -309,7 +309,7 @@ tr_torrentInitFilePieces( tr_torrent * tor )
     uint64_t offset = 0;
     tr_info * inf = &tor->info;
 
-    assert( inf != NULL );
+    assert( inf );
 
     for( ff=0; ff<inf->fileCount; ++ff ) {
       inf->files[ff].offset = offset;
@@ -327,7 +327,7 @@ tr_torrentPromoteTracker( tr_torrent * tor, int pos )
     int i;
     int tier;
 
-    assert( tor != NULL );
+    assert( tor );
     assert( ( 0 <= pos ) && ( pos < tor->info.trackerCount ) );
 
     /* the tier of the tracker we're promoting */
@@ -632,7 +632,7 @@ tr_torrentManualUpdate( tr_torrent * tor )
 int
 tr_torrentCanManualUpdate( const tr_torrent * tor )
 {
-    return ( tor != NULL )
+    return ( tor )
         && ( tor->isRunning )
         && ( tr_trackerCanManualAnnounce( tor->tracker ) );
 }
@@ -804,7 +804,7 @@ fileBytesCompleted ( const tr_torrent * tor, tr_file_index_t fileIndex )
     const uint64_t lastBlockOffset  = (file->offset + lastOffset) % tor->blockSize;
     uint64_t haveBytes = 0;
 
-    assert( tor != NULL );
+    assert( tor );
     assert( fileIndex < tor->info.fileCount );
     assert( file->offset + file->length <= tor->info.totalSize );
     assert( ( firstBlock < tor->blockCount ) || (!file->length && file->offset==tor->info.totalSize) );
@@ -879,7 +879,7 @@ tr_torrentPeers( const tr_torrent * tor, int * peerCount )
 {
     tr_peer_stat * ret = NULL;
 
-    if( tor != NULL )
+    if( tor )
         ret = tr_peerMgrPeerStats( tor->handle->peerMgr,
                                    tor->info.hash, peerCount );
 
@@ -929,7 +929,7 @@ tr_torrentSetHasPiece( tr_torrent * tor, tr_piece_index_t pieceIndex, int has )
 {
     tr_torrentLock( tor );
 
-    assert( tor != NULL );
+    assert( tor );
     assert( pieceIndex < tor->info.pieceCount );
 
     if( has )
@@ -951,7 +951,7 @@ freeTorrent( tr_torrent * tor )
     tr_handle * h = tor->handle;
     tr_info * inf = &tor->info;
 
-    assert( tor != NULL );
+    assert( tor );
     assert( !tor->isRunning );
 
     tr_globalLock( h );
@@ -1160,11 +1160,11 @@ getCompletionString( int type )
 static void
 fireStatusChange( tr_torrent * tor, cp_status_t status )
 {
-    assert( tor != NULL );
+    assert( tor );
     assert( status==TR_CP_INCOMPLETE || status==TR_CP_DONE || status==TR_CP_COMPLETE );
 
-    if( tor->status_func != NULL )
-        (tor->status_func)( tor, status, tor->status_func_user_data );
+    if( tor->status_func )
+        tor->status_func( tor, status, tor->status_func_user_data );
 }
 
 void
@@ -1172,7 +1172,7 @@ tr_torrentSetStatusCallback( tr_torrent             * tor,
                              tr_torrent_status_func   func,
                              void                   * user_data )
 {
-    assert( tor != NULL );
+    assert( tor );
     tor->status_func = func;
     tor->status_func_user_data = user_data;
 }
@@ -1237,7 +1237,7 @@ tr_torrentInitFilePriority( tr_torrent      * tor,
     tr_piece_index_t i;
     tr_file * file;
 
-    assert( tor != NULL );
+    assert( tor );
     assert( fileIndex < tor->info.fileCount );
     assert( priority==TR_PRI_LOW || priority==TR_PRI_NORMAL || priority==TR_PRI_HIGH );
 
@@ -1269,7 +1269,7 @@ tr_torrentGetFilePriority( const tr_torrent *  tor, tr_file_index_t file )
     tr_priority_t ret;
 
     tr_torrentLock( tor );
-    assert( tor != NULL );
+    assert( tor );
     assert( file < tor->info.fileCount );
     ret = tor->info.files[file].priority;
     tr_torrentUnlock( tor );
index 62a62ccafdb70919ada80576ad347223e56bd58f..9d728e53524b95f1c263d6214d853edc4a40f94a 100644 (file)
@@ -176,7 +176,7 @@ void
 tr_deepLog( const char * file, int line, const char * name, const char * fmt, ... )
 {
     FILE * fp = tr_getLog( );
-    if( fp != NULL )
+    if( fp )
     {
         va_list args;
         char timestr[64];
@@ -652,7 +652,7 @@ tr_strndup( const void * in, int len )
     {
         out = tr_strdup( in );
     }
-    else if( in != NULL )
+    else if( in )
     {
         out = tr_malloc( len+1 );
         memcpy( out, in, len );
@@ -823,8 +823,8 @@ tr_bitfieldFindTrue( const tr_bitfield  * bitfield,
 int
 tr_bitfieldAdd( tr_bitfield  * bitfield, size_t nth )
 {
-    assert( bitfield != NULL );
-    assert( bitfield->bits != NULL );
+    assert( bitfield );
+    assert( bitfield->bits );
 
     if( nth >= bitfield->bitCount )
         return -1;
@@ -850,8 +850,8 @@ int
 tr_bitfieldRem( tr_bitfield   * bitfield,
                 size_t          nth )
 {
-    assert( bitfield != NULL );
-    assert( bitfield->bits != NULL );
+    assert( bitfield );
+    assert( bitfield->bits );
 
     if( nth >= bitfield->bitCount )
         return -1;
@@ -997,8 +997,8 @@ tr_strlcpy(char *dst, const char *src, size_t siz)
     const char *s = src;
     size_t n = siz;
 
-    assert( s != NULL );
-    assert( d != NULL );
+    assert( s );
+    assert( d );
 
     /* Copy as many bytes as will fit */
     if (n != 0) {
index fef7958a617da747f993026bd9bbcf657781329a..95516b1ad3d40f79d1da9c1c66312c039857afd2 100644 (file)
@@ -36,8 +36,8 @@ static void
 fireCheckDone( tr_torrent          * torrent,
                tr_verify_done_cb     verify_done_cb )
 {
-    if( verify_done_cb != NULL )
-        (*verify_done_cb)( torrent );
+    if( verify_done_cb )
+        verify_done_cb( torrent );
 }
 
 static struct verify_node currentNode;