mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-01 21:35:40 +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) {
|
public IPath resolvePath(IPath path) {
|
||||||
|
if(path == null)
|
||||||
|
return null;
|
||||||
|
|
||||||
String str = path.toPortableString();
|
String str = path.toPortableString();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Add table
Reference in a new issue