1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-28 03:15:33 +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 { try {
getSession().getExecutor().execute(new DsfRunnable() { getSession().getExecutor().execute(new DsfRunnable() {
public void run() { public void run() {
if (!checkService(IStack.class, null, update)) return;
getServicesTracker().getService(IStack.class).getTopFrame( getServicesTracker().getService(IStack.class).getTopFrame(
execDmc, execDmc,
new DataRequestMonitor<IFrameDMContext>(getExecutor(), null) { new DataRequestMonitor<IFrameDMContext>(getExecutor(), null) {