fix integer overflow
This commit is contained in:
parent
a19be79891
commit
5f940c40ed
|
@ -70,7 +70,7 @@ public class DownloadRunnable extends Thread {
|
||||||
Log.d(TAG, mId + ":acquired block at position=" + block.position + " done=" + block.done);
|
Log.d(TAG, mId + ":acquired block at position=" + block.position + " done=" + block.done);
|
||||||
}
|
}
|
||||||
|
|
||||||
long start = block.position * DownloadMission.BLOCK_SIZE;
|
long start = (long)block.position * DownloadMission.BLOCK_SIZE;
|
||||||
long end = start + DownloadMission.BLOCK_SIZE - 1;
|
long end = start + DownloadMission.BLOCK_SIZE - 1;
|
||||||
|
|
||||||
start += block.done;
|
start += block.done;
|
||||||
|
|
Loading…
Reference in New Issue