1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0025164: BVH_Box::Area() might be called on uninitialized data

This commit is contained in:
dbp 2014-09-15 18:08:03 +04:00 committed by bugmaster
parent eaf5c5e010
commit 418864aea1

View File

@ -199,7 +199,8 @@ namespace BVHTools
template<class T, int N>
T BVH_Box<T, N>::Area() const
{
return BVHTools::SurfaceCalculator<T, N>::Area (myMaxPoint - myMinPoint);
return !myInitialized ? static_cast<T> (0.0) :
BVHTools::SurfaceCalculator<T, N>::Area (myMaxPoint - myMinPoint);
}
// =======================================================================