From aa738bb350016221fa7e3c07c001bacb080f27eb Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Mon, 9 Mar 2020 20:44:03 -0400 Subject: [PATCH] Corrected an obscure error in GDS generation caused by an uninitialized variable, with the result that writing GDS would claim that it cannot scale down enough and that the output units are either wrong or the output style must have "units angstroms". Using angstrom units would solve the problem but did not treat the root of the problem. --- VERSION | 2 +- cif/CIFtech.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 8c913ded..3bce592d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.2.193 +8.2.194 diff --git a/cif/CIFtech.c b/cif/CIFtech.c index 9f2f457b..441b3c32 100644 --- a/cif/CIFtech.c +++ b/cif/CIFtech.c @@ -2117,7 +2117,7 @@ CIFTechOutputScale(n, d) SquaresData *squares; SlotsData *slots; BloatData *bloats; - bool has_odd_space; + bool has_odd_space = FALSE; if (ostyle == NULL) return;