stoc/source/invocation/invocation.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b944e498a3053497394963b4e7bda2951ddcbcc1
Author: Markus Mohrhard <markus.mohrh...@googlemail.com>
Date:   Mon Jul 18 15:19:32 2016 +0200

    don't write past the end of the array
    
    Found through
    
http://crashreport.libreoffice.org/stats/crash_details/6ba2edbd-d268-4074-8b87-590a5694cc26
    
    Change-Id: Ic95d472fd117c2d286fabb775ef49e287a2874fa

diff --git a/stoc/source/invocation/invocation.cxx 
b/stoc/source/invocation/invocation.cxx
index eee3da6..207797a 100644
--- a/stoc/source/invocation/invocation.cxx
+++ b/stoc/source/invocation/invocation.cxx
@@ -992,7 +992,7 @@ Sequence< Type > SAL_CALL Invocation_Impl::getTypes() 
throw( RuntimeException, s
     static Sequence< Type > const * s_pTypes = nullptr;
     if (! s_pTypes)
     {
-        Sequence< Type > types( 4 +8 );
+        Sequence< Type > types( 4 + 10 );
         Type * pTypes = types.getArray();
         sal_Int32 n = 0;
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to