Corrected a bad error from a previous commit (5 days ago, for fixing
the forward-referenced GDS cell problem) in which when writing cells from 3rd-party GDS, the structure names are written to GDS with the indicator flag in front, making the structure names and the referenced names different, so that the GDS file is no longer valid. This has been fixed.
This commit is contained in:
parent
4b5566af3e
commit
0c24c33451
|
|
@ -487,7 +487,7 @@ calmaDumpStructure(def, outf, calmaDefHash, filename)
|
|||
HashSetValue(he, (char *)newnameptr);
|
||||
}
|
||||
}
|
||||
calmaOutStringRecord(CALMA_STRNAME, newnameptr, outf);
|
||||
calmaOutStringRecord(CALMA_STRNAME, newnameptr + 1, outf);
|
||||
}
|
||||
freeMagic(strname);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue