Fix (unknown length) downloads larger than 2GiB

Closes #215
This commit is contained in:
Nils Maier 2014-05-24 22:42:23 +02:00
parent 64b1fefb78
commit a82f08765e
14 changed files with 49 additions and 48 deletions

View file

@ -28,7 +28,7 @@ class GZipDecodingStreamFilterTest:public CppUnit::TestFixture {
public:
MockSegment2():positionToWrite_(0) {}
virtual void updateWrittenLength(int32_t bytes) CXX11_OVERRIDE
virtual void updateWrittenLength(int64_t bytes) CXX11_OVERRIDE
{
positionToWrite_ += bytes;
}