Fix nullptr SEGFAULT for the case PLUGIN::CanReadBoard() returns false, as no supported PLUGIN was found for the given file.

This commit is contained in:
Thomas Pointhuber 2023-08-18 14:07:45 +02:00
parent 988a90d5ee
commit 94c732409b
1 changed files with 5 additions and 0 deletions

View File

@ -626,6 +626,11 @@ bool PCB_EDIT_FRAME::OpenProjectFiles( const std::vector<wxString>& aFileSet, in
try
{
if (pi == nullptr) {
// There was no plugin found, e.g. due to invalid file extension, file header,...
THROW_IO_ERROR( _( "File format is not supported" ) );
}
STRING_UTF8_MAP props;
// EAGLE_PLUGIN can use this info to center the BOARD, but it does not yet.