From 93bb7d6b3cde85e2fd1aeddc468b4fa3af0c481f Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Wed, 7 Jul 2010 16:31:07 +0000 Subject: [PATCH] (trunk libT) #3399 "tr_ioTestPiece() can be faster" -- fixed --- libtransmission/inout.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libtransmission/inout.c b/libtransmission/inout.c index a7acfb3b8..b2d8fcf71 100644 --- a/libtransmission/inout.c +++ b/libtransmission/inout.c @@ -30,7 +30,6 @@ #include "crypto.h" #include "fdlimit.h" #include "inout.h" -#include "peer-common.h" /* MAX_BLOCK_SIZE */ #include "platform.h" #include "stats.h" #include "torrent.h" @@ -289,8 +288,8 @@ recalculateHash( tr_torrent * tor, size_t bytesLeft; uint32_t offset = 0; tr_bool success = TRUE; - const size_t buflen = MAX_BLOCK_SIZE; - uint8_t * buffer = tr_new( uint8_t, buflen ); + const size_t buflen = 1024 * 256; /* 256 KiB buffer */ + void * buffer = tr_valloc( buflen ); SHA_CTX sha; assert( tor != NULL ); -- 2.40.0