Avoid memory leak

When creating a spreadsheet, and writing to Xlsx, then to Xls, then
reading the Xls, it would leak memory during reading.

Fixes #2092
This commit is contained in:
Adrien Crivelli 2021-05-17 11:19:19 +09:00
parent e5185eab0c
commit ea2d4b96f6
No known key found for this signature in database
GPG Key ID: 16D79B903B4B5874
1 changed files with 1 additions and 0 deletions

View File

@ -399,6 +399,7 @@ class Worksheet implements IComparable
Calculation::getInstance($this->parent)->clearCalculationCacheForWorksheet($this->title);
$this->disconnectCells();
$this->rowDimensions = [];
}
/**