[Libreoffice-commits] .: Branch 'libreoffice-3-5' - writerfilter/source

Miklos Vajna vmiklos at kemper.freedesktop.org
Wed Jun 13 00:50:16 PDT 2012


 writerfilter/source/dmapper/DomainMapperTableManager.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 7588fa7a534a217e3949013b7c373fbb5503d466
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Tue Jun 12 19:50:23 2012 +0200

    Resolves: fdo#49178 CRASH when FILEOPEN particular RTF
    
    Change-Id: Idd938980b91ec8b822a92dfd7013a20fe5b6f498
    (cherry picked from commit 104badf31c8a39994cadc460561bfa01e428b67b)
    
    Signed-off-by: Miklos Vajna <vmiklos at suse.cz>

diff --git a/writerfilter/source/dmapper/DomainMapperTableManager.cxx b/writerfilter/source/dmapper/DomainMapperTableManager.cxx
index b4aaf3d..7403b42 100644
--- a/writerfilter/source/dmapper/DomainMapperTableManager.cxx
+++ b/writerfilter/source/dmapper/DomainMapperTableManager.cxx
@@ -486,8 +486,9 @@ void DomainMapperTableManager::endOfRowAction()
 
         sal_Int16 nSum = 0;
         sal_uInt32 nPos = 0;
+        sal_uInt32 nSizeTableGrid = pTableGrid->size();
         // Ignoring the i=0 case means we assume that the width of the last cell matches the table width
-        for (int i = m_nCell; i > 1; i--)
+        for (sal_uInt32 i = m_nCell; i > 1 && nSizeTableGrid >= i; i--)
         {
             nSum += (*pTableGrid.get())[pTableGrid->size() - i]; // Size of the current cell
             pSeparators[nPos].Position = nSum * nFullWidthRelative / nFullWidth; // Relative position


More information about the Libreoffice-commits mailing list