Don't presume a sheet-path while reading files.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/14920
This commit is contained in:
parent
b7f0aae006
commit
a3f62cc8de
|
@ -1344,7 +1344,7 @@ bool SCH_SYMBOL::ResolveTextVar( const SCH_SHEET_PATH* aPath, wxString* token, i
|
|||
}
|
||||
|
||||
// See if parent can resolve it (this will recurse to ancestors)
|
||||
if( aPath->Last()->ResolveTextVar( aPath, token, aDepth + 1 ) )
|
||||
if( aPath->Last() && aPath->Last()->ResolveTextVar( aPath, token, aDepth + 1 ) )
|
||||
return true;
|
||||
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue