Corrected a typo in the new sidewall coupling shield check that

will cause an infinite loop during extraction.  Fixes issue #166
on the github issue tracker.
This commit is contained in:
Tim Edwards 2022-05-18 09:26:00 -04:00
parent 62ce6cde05
commit 4f5e1aec6b
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
8.3.304
8.3.305

View File

@ -1277,7 +1277,7 @@ extSideBottom(tpfar, bp)
rnear = (NodeRegion *)extGetRegion(tptest);
if ((rnear != (NodeRegion *)extUnInit) && (rnear != rinside))
break;
p.p_y = TOP(tptest) - 1;
p.p_y = TOP(tptest) + 1;
}
if (p.p_y > bp->b_segment.r_ybot)
extSideCommon(rinside, rfar, tpnear, tpfar, overlap, sep);