mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-30 12:25:35 +02:00
added a null pointer check to the PathEntry Var manager
This commit is contained in:
parent
3af158b7d9
commit
871c565145
1 changed files with 3 additions and 0 deletions
|
@ -163,6 +163,9 @@ public class CdtVarPathEntryVariableManager implements
|
|||
}
|
||||
|
||||
public IPath resolvePath(IPath path) {
|
||||
if(path == null)
|
||||
return null;
|
||||
|
||||
String str = path.toPortableString();
|
||||
|
||||
try {
|
||||
|
|
Loading…
Add table
Reference in a new issue