mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-28 11:25:35 +02:00
[219630] Fixed an NPE due to a null IStack service.
This commit is contained in:
parent
fe730bbef7
commit
2f616ee3bc
1 changed files with 2 additions and 0 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue