Corrected a small error in "extract unique" that will attempt to

run free() on a memory location that was never allocated.  This
error has no effect on anything, but correcting it prevents magic
from issuing a mysterious warning.
This commit is contained in:
Tim Edwards 2022-10-07 08:43:49 -04:00
parent 189d62da9b
commit bc5093502c
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
8.3.328
8.3.329

View File

@ -163,7 +163,7 @@ extUniqueCell(def, option)
HashKill(&labelHash);
ExtFreeLabRegions((LabRegion *) lregList);
freeMagic(nodeList);
if (nodeList) freeMagic(nodeList);
ExtResetTiles(def, extUnInit);
if (nwarn)
TxError("%s: %d warnings\n", def->cd_name, nwarn);