From 4af736b18a76f9b86819f1ecf59e4109be9bccb0 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Thu, 14 Dec 2017 16:55:06 -0500 Subject: [PATCH] Corrected error in the extraction for magic-8.2 (only) that appears to have come from an unfinished (or at least unchecked) development effort on improving the checks for DRC interaction errors (which also affects extraction). --- drc/DRCsubcell.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drc/DRCsubcell.c b/drc/DRCsubcell.c index 05158dff..f7f8c159 100644 --- a/drc/DRCsubcell.c +++ b/drc/DRCsubcell.c @@ -91,7 +91,6 @@ drcFindOtherCells(tile, area) Tile *tile; /* Tile in subcell plane. */ Rect *area; /* Area in which to include interactions. */ { - Rect r; CellUse *use; CellTileBody *ctbptr = (CellTileBody *) tile->ti_body; @@ -104,7 +103,7 @@ drcFindOtherCells(tile, area) ctbptr = ctbptr->ctb_next) { use = ctbptr->ctb_use; - GeoInclude(&use->cu_bbox, &r); + GeoInclude(&use->cu_bbox, area); } return 0; }