From e11b946d62a53343756a98ec1b5dd25405ea4697 Mon Sep 17 00:00:00 2001 From: Viktor Andreev Date: Thu, 28 Aug 2025 21:05:16 +0600 Subject: [PATCH] fix bug #76433 --- OOXML/Binary/Sheets/Writer/BinaryReaderS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OOXML/Binary/Sheets/Writer/BinaryReaderS.cpp b/OOXML/Binary/Sheets/Writer/BinaryReaderS.cpp index 236583b32c..f053d0e10b 100644 --- a/OOXML/Binary/Sheets/Writer/BinaryReaderS.cpp +++ b/OOXML/Binary/Sheets/Writer/BinaryReaderS.cpp @@ -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) {