mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#4351 Regression test : Guard null pointer access
This commit is contained in:
@@ -465,15 +465,19 @@ RimWellPathCollection* Rim3dView::wellPathCollection() const
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
bool Rim3dView::hasVisibleTimeStepDependent3dWellLogCurves() const
|
||||
{
|
||||
std::vector<Rim3dWellLogCurve*> wellLogCurves;
|
||||
wellPathCollection()->descendantsIncludingThisOfType(wellLogCurves);
|
||||
for (const Rim3dWellLogCurve* curve : wellLogCurves)
|
||||
if (wellPathCollection())
|
||||
{
|
||||
if (curve->showInView(this) && curve->isShowingTimeDependentResult())
|
||||
std::vector<Rim3dWellLogCurve*> wellLogCurves;
|
||||
wellPathCollection()->descendantsIncludingThisOfType(wellLogCurves);
|
||||
for (const Rim3dWellLogCurve* curve : wellLogCurves)
|
||||
{
|
||||
return true;
|
||||
if (curve->showInView(this) && curve->isShowingTimeDependentResult())
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user