Skip to content

Commit

Permalink
Corrected an error in parsing the "defaultperimeter" statement in
Browse files Browse the repository at this point in the history
tech files which incorrectly parses the syntax using five
parameters.  This syntax variant does not get used often, which
is why the error went undetected for a long time.
  • Loading branch information
RTimothyEdwards committed Oct 23, 2022
1 parent 94daf98 commit 9d40fbf
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.331
8.3.332
2 changes: 1 addition & 1 deletion extract/ExtTech.c
Original file line number Diff line number Diff line change
Expand Up @@ -1260,7 +1260,7 @@ ExtTechSimplePerimCap(argc, argv)
else
plane2 = DBTechNoisyNamePlane(argv[argc - 2]);

if (argc > 4)
if (argc > 5)
{
DBTechNoisyNameMask(argv[argc - 3], &subtypes);
TTMaskSetMask(allExtractTypes, &subtypes);
Expand Down

0 comments on commit 9d40fbf

Please sign in to comment.