[Libreoffice-commits] core.git: rsc/source

Michael Meeks michael.meeks at suse.com
Thu Mar 21 08:22:45 PDT 2013


 rsc/source/tools/rsctools.cxx |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 5c4bf7a6029da36853fbae1513c9c5ed993059a3
Author: Michael Meeks <michael.meeks at suse.com>
Date:   Thu Mar 21 15:21:28 2013 +0000

    stop uninitialized memory leaking into resource files.
    
    Change-Id: Ifb74ce0c60e0d0796d5d04a67e9d58721b58593c

diff --git a/rsc/source/tools/rsctools.cxx b/rsc/source/tools/rsctools.cxx
index 7e94c6e..dd378e4 100644
--- a/rsc/source/tools/rsctools.cxx
+++ b/rsc/source/tools/rsctools.cxx
@@ -359,10 +359,13 @@ RscWriteRc :: ~RscWriteRc()
 *************************************************************************/
 sal_uInt32 RscWriteRc :: IncSize( sal_uInt32 nSize )
 {
+    sal_uInt32 nOrigPos = nLen;
     nLen += nSize;
     if( pMem )
         pMem = (char*)rtl_reallocateMemory( pMem, nLen );
-    return( nLen - nSize );
+    if( pMem )
+        memset( pMem + nOrigPos, 0, nSize );
+    return nOrigPos;
 }
 
 /*************************************************************************


More information about the Libreoffice-commits mailing list