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:
parent
62ce6cde05
commit
4f5e1aec6b
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue