Tracked down a DRC issue found recently where spurious errors get
drawn outside the area being worked on. Tracked it down to a missing check for an invalid rectangle. Fixed now.
This commit is contained in:
parent
0d9b862c0e
commit
d0ef32de0f
|
|
@ -826,6 +826,7 @@ DRCInteractionCheck(def, area, erasebox, func, cdarg)
|
|||
*/
|
||||
subArea = *erasebox;
|
||||
GeoClip(&subArea, &cliparea);
|
||||
if (GEO_RECTNULL(&subArea)) continue;
|
||||
GEO_EXPAND(&subArea, DRCTechHalo, &intArea);
|
||||
|
||||
errorSaveType = DRCErrorType;
|
||||
|
|
|
|||
Loading…
Reference in New Issue