Skip to content

Commit

Permalink
Corrected a typo in the new sidewall coupling shield check that
Browse files Browse the repository at this point in the history
will cause an infinite loop during extraction.  Fixes issue #166
on the github issue tracker.
  • Loading branch information
RTimothyEdwards committed May 18, 2022
1 parent 62ce6cd commit 4f5e1ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.3.304
8.3.305
2 changes: 1 addition & 1 deletion extract/ExtCouple.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4f5e1ae

Please # to comment.