Merge pull request 'fix bug #76433' (#428) from fix/bug76433 into release/v9.1.0

Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/core/pulls/428
This commit is contained in:
Elena Subbotina
2025-08-28 15:07:44 +00:00

View File

@ -7070,7 +7070,7 @@ int BinaryWorksheetsTableReader::ReadCell(BYTE type, long length, void* poResult
{
int nRow = m_oBufferedStream.GetLong();
int nCol = m_oBufferedStream.GetLong();
pCell->setRowCol(nRow - 1, nCol);
pCell->setRowCol(nRow, nCol);
}
else if (c_oSerCellTypes::Style == type)
{