Fix potential memory leak in worksheet_set_column().

Fix memory leak in worksheet_set_column() is column range was
overridden.
This commit is contained in:
John McNamara 2021-04-15 23:19:41 +01:00
parent 78c5bdaa7a
commit df4f2aa854

View File

@ -7528,6 +7528,7 @@ worksheet_set_column_opt(lxw_worksheet *self,
copied_options->level = level;
copied_options->collapsed = collapsed;
free(self->col_options[firstcol]);
self->col_options[firstcol] = copied_options;
/* Store the column formats for use when writing cell data. */