1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-05 00:36:16 +02:00

Bug 341245 - Importing binary file larger than 1024 bytes works incorrectly

This commit is contained in:
John Cortell 2011-03-29 15:13:34 +00:00
parent f5b0005a75
commit 79a13f0c70

View file

@ -295,7 +295,7 @@ public class RAWBinaryImporter implements IMemoryImporter {
BigInteger jobCount = BigInteger.valueOf(actualByteCount).divide(factor);
monitor.worked(jobCount.intValue());
recordAddress.add(BigInteger.valueOf(actualByteCount));
recordAddress = recordAddress.add(BigInteger.valueOf(actualByteCount));
actualByteCount = reader.read(byteValues);
}