Corrected a problem with character array bound overflow when writing

values to a LEF file.
This commit is contained in:
Tim Edwards 2021-05-25 11:05:33 -04:00
parent 8d8fe2fe55
commit c22d584ac3
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
8.3.168
8.3.169

View File

@ -776,7 +776,7 @@ lefWriteGeometry(tile, cdata)
lefClient *lefdata = (lefClient *)cdata;
FILE *f = lefdata->file;
float scale = lefdata->oscale;
char leffmt[6][10];
char leffmt[6][16];
TileType ttype, otype = TiGetTypeExact(tile);
LefMapping *lefMagicToLefLayer = lefdata->lefMagicMap;