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:
parent
f5b0005a75
commit
79a13f0c70
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue