1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

[219630] Fixed an NPE due to a null IStack service.

This commit is contained in:
Pawel Piech 2008-02-20 17:34:54 +00:00
parent fe730bbef7
commit 2f616ee3bc

View file

@ -122,6 +122,8 @@ public class StackFramesVMNode extends AbstractDMVMNode
try {
getSession().getExecutor().execute(new DsfRunnable() {
public void run() {
if (!checkService(IStack.class, null, update)) return;
getServicesTracker().getService(IStack.class).getTopFrame(
execDmc,
new DataRequestMonitor<IFrameDMContext>(getExecutor(), null) {