1
0
Fork 0
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:
Francois Chouinard 2009-01-21 21:12:10 +00:00
parent 9704f355f0
commit 653bbd7e93

View file

@ -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);