mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +02:00
Check for null reference.
This commit is contained in:
parent
e6df60f6a3
commit
8ec3ec5b4e
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ public class CThread extends CObject implements ICDIThread {
|
|||
|
||||
// Check to see if we are already at this level
|
||||
StackFrame current = getCurrentStackFrame();
|
||||
if (current.getLevel() == frameNum) {
|
||||
if (current != null && current.getLevel() == frameNum) {
|
||||
// noop
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue