From ae42f072af13754bf526beb908af7efc9a4ab0da Mon Sep 17 00:00:00 2001 From: Chris Tallon Date: Sun, 14 Aug 2005 14:25:58 +0000 Subject: [PATCH] Allow up to 500k getBlocks --- recplayer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recplayer.c b/recplayer.c index a13a64e..0968d44 100644 --- a/recplayer.c +++ b/recplayer.c @@ -97,7 +97,7 @@ ULLONG RecPlayer::getTotalLength() unsigned long RecPlayer::getBlock(unsigned char* buffer, ULLONG position, unsigned long amount) { - if ((amount > totalLength) || (amount > 100000)) + if ((amount > totalLength) || (amount > 500000)) { log->log("RecPlayer", Log::DEBUG, "Amount %lu requested and rejected", amount); return 0; -- 2.39.2