mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 09:25:31 +02:00
Fix for Bug261883
This commit is contained in:
parent
9704f355f0
commit
653bbd7e93
1 changed files with 7 additions and 2 deletions
|
@ -513,6 +513,9 @@ public class DsfMemoryBlock extends PlatformObject implements IMemoryBlockExtens
|
|||
}
|
||||
});
|
||||
}
|
||||
else {
|
||||
drm.done();
|
||||
}
|
||||
|
||||
}
|
||||
};
|
||||
|
@ -551,9 +554,11 @@ public class DsfMemoryBlock extends PlatformObject implements IMemoryBlockExtens
|
|||
// Go for it
|
||||
memoryService.setMemory(
|
||||
fContext, address, offset, fWordSize, bytes.length, bytes,
|
||||
new RequestMonitor(fRetrieval.getExecutor(), null));
|
||||
new RequestMonitor(fRetrieval.getExecutor(), drm));
|
||||
}
|
||||
else {
|
||||
drm.done();
|
||||
}
|
||||
|
||||
}
|
||||
};
|
||||
fRetrieval.getExecutor().execute(query);
|
||||
|
|
Loading…
Add table
Reference in a new issue