]> granicus.if.org Git - transmission/commitdiff
(trunk libT) back out the changes for #1580; closing that ticket as invalid
authorCharles Kerr <charles@transmissionbt.com>
Thu, 11 Dec 2008 00:39:47 +0000 (00:39 +0000)
committerCharles Kerr <charles@transmissionbt.com>
Thu, 11 Dec 2008 00:39:47 +0000 (00:39 +0000)
libtransmission/inout.c

index d857c827871fbb006f548e10382f0ae059957001..83e26ad89f69a5542a0f29461bdb246100e1dfaa 100644 (file)
@@ -30,8 +30,6 @@
 #include "torrent.h"
 #include "utils.h"
 
-#define TR_HASH_BUFSIZE (64*1024)
-
 /****
 *****  Low-level IO functions
 ****/
@@ -217,15 +215,11 @@ recalculateHash( const tr_torrent * tor,
                  tr_piece_index_t   pieceIndex,
                  uint8_t *          setme )
 {
-    static uint8_t * buf = NULL;
-    size_t bytesLeft;
+    size_t   bytesLeft;
     uint32_t offset = 0;
-    int success = TRUE;
+    int      success = TRUE;
     SHA_CTX  sha;
 
-    if( buf == NULL )
-        buf = tr_new( uint8_t, TR_HASH_BUFSIZE );
-
     assert( tor );
     assert( setme );
     assert( pieceIndex < tor->info.pieceCount );
@@ -235,7 +229,8 @@ recalculateHash( const tr_torrent * tor,
 
     while( bytesLeft )
     {
-        const int len = MIN( bytesLeft, TR_HASH_BUFSIZE );
+        uint8_t   buf[8192];
+        const int len = MIN( bytesLeft, sizeof( buf ) );
         success = !tr_ioRead( tor, pieceIndex, offset, len, buf );
         if( !success )
             break;