Regression Test: Guard null pointer access

This commit is contained in:
Magne Sjaastad
2022-06-27 10:33:17 +02:00
parent 55966ef6e8
commit a86abab3cb
2 changed files with 4 additions and 2 deletions

View File

@@ -810,7 +810,7 @@ void RivWellPathPartMgr::buildWellPathParts( const caf::DisplayCoordTransform* d
double cellRadius = 15.0;
auto eclipseView = dynamic_cast<RimEclipseView*>( m_rimView.p() );
if ( eclipseView )
if ( eclipseView && eclipseView->mainGrid() )
{
double characteristicCellSize = eclipseView->mainGrid()->characteristicIJCellSize();
cellRadius = sphereRadiusFactor * characteristicCellSize;