(trunk libT) #3399 "tr_ioTestPiece() can be faster" -- fixed

This commit is contained in:
Charles Kerr 2010-07-07 16:31:07 +00:00
parent 6adfcc5528
commit 93bb7d6b3c
1 changed files with 2 additions and 3 deletions

View File

@ -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 );