From 9d40fbfecbae9b8cad574022e6eecb3b880bf918 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Sat, 22 Oct 2022 22:12:15 -0400 Subject: [PATCH] Corrected an error in parsing the "defaultperimeter" statement in 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. --- VERSION | 2 +- extract/ExtTech.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 2a2964ec..e6431f71 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.3.331 +8.3.332 diff --git a/extract/ExtTech.c b/extract/ExtTech.c index 2cb4d85f..f091edcb 100644 --- a/extract/ExtTech.c +++ b/extract/ExtTech.c @@ -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);