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:
parent
189d62da9b
commit
bc5093502c
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue