Check parameters before assuming we can handle the model.
Fixes https://gitlab.com/kicad/code/kicad/issues/13444
This commit is contained in:
parent
eba231a8bb
commit
d65cf1b457
|
@ -530,11 +530,6 @@ private:
|
|||
|
||||
void clearLibSymbols();
|
||||
|
||||
/**
|
||||
* Migrate the symbol's V6 simulation model SCH_FIELDs to their V7 equivalents
|
||||
*/
|
||||
void migrateSimModel( SCH_SYMBOL& aSymbol );
|
||||
|
||||
public:
|
||||
/**
|
||||
* last value for the zoom level, useful in Eeschema when changing the current displayed
|
||||
|
|
|
@ -1650,6 +1650,9 @@ void SIM_MODEL::MigrateSimModel( T_symbol& aSymbol, const PROJECT* aProject )
|
|||
{
|
||||
model->SetParamValue( ii, tokenizer.GetNextToken().ToStdString(),
|
||||
SIM_VALUE_GRAMMAR::NOTATION::SPICE );
|
||||
|
||||
if( !model->GetParam( ii ).value->HasValue() )
|
||||
THROW_IO_ERROR( "fall back to raw SPICE" );
|
||||
}
|
||||
|
||||
spiceTypeInfo.m_Text = SIM_MODEL::TypeInfo( type ).fieldValue;
|
||||
|
|
Loading…
Reference in New Issue