Check parameters before assuming we can handle the model.

Fixes https://gitlab.com/kicad/code/kicad/issues/13444
This commit is contained in:
Jeff Young 2023-01-08 17:59:27 +00:00
parent eba231a8bb
commit d65cf1b457
2 changed files with 3 additions and 5 deletions

View File

@ -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

View File

@ -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;