Fix null dereference in DRC checking.
This commit is contained in:
parent
eb1ff80d57
commit
9940931b0f
|
@ -620,7 +620,9 @@ bool SHAPE_RECT::Collide( const SEG& aSeg, int aClearance, int* aActual ) const
|
||||||
{
|
{
|
||||||
if( BBox( 0 ).Contains( aSeg.A ) || BBox( 0 ).Contains( aSeg.B ) )
|
if( BBox( 0 ).Contains( aSeg.A ) || BBox( 0 ).Contains( aSeg.B ) )
|
||||||
{
|
{
|
||||||
*aActual = 0;
|
if( aActual )
|
||||||
|
*aActual = 0;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue