mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Use int64_t instead of off_t
Using off_t, at least, in DiskAdaptor layer is problematic because torrent can contain under 2GiB files but total sum of those files may exceed 2GiB limit, which makes off_t overflow in 32 bit system without large file support. So we use int64_t in API. We'll check the file length before download so that it does not exceed max off_t.
This commit is contained in:
parent
f56743b083
commit
860f4dd06a
48 changed files with 191 additions and 184 deletions
|
@ -43,7 +43,7 @@ void ByteArrayDiskWriterTest::testWriteAndRead() {
|
|||
buf[c] = '\0';
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("ello World !!"), std::string(buf));
|
||||
CPPUNIT_ASSERT_EQUAL((off_t)14, bw.size());
|
||||
CPPUNIT_ASSERT_EQUAL((int64_t)14, bw.size());
|
||||
}
|
||||
|
||||
void ByteArrayDiskWriterTest::testWriteAndRead2() {
|
||||
|
@ -59,7 +59,7 @@ void ByteArrayDiskWriterTest::testWriteAndRead2() {
|
|||
buf[c] = '\0';
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("Hello From Mars"), std::string(buf));
|
||||
CPPUNIT_ASSERT_EQUAL((off_t)15, bw.size());
|
||||
CPPUNIT_ASSERT_EQUAL((int64_t)15, bw.size());
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue