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

David Tardon dtardon at redhat.com
Wed Oct 22 00:56:14 PDT 2014


 oox/source/ole/olehelper.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e3ac30fe6287b4cd0c9ef103d011a109a359a0be
Author: David Tardon <dtardon at redhat.com>
Date:   Wed Oct 22 09:50:25 2014 +0200

    fix oox build on big endian
    
    Change-Id: I580266d908e30ef076de0517f41a600f4c9372c1

diff --git a/oox/source/ole/olehelper.cxx b/oox/source/ole/olehelper.cxx
index 409eb4a..77e8c4a 100644
--- a/oox/source/ole/olehelper.cxx
+++ b/oox/source/ole/olehelper.cxx
@@ -262,7 +262,7 @@ void OleHelper::exportGuid( BinaryOutputStream& rOStr, const SvGlobalName& rId )
     rOStr << rId.GetCLSID().Data1;
     rOStr << rId.GetCLSID().Data2;
     rOStr << rId.GetCLSID().Data3;
-    rOStr.writeArray( &rId.GetCLSID().Data4, 8 );
+    rOStr.writeArray( rId.GetCLSID().Data4, 8 );
 }
 
 OUString OleHelper::importGuid( BinaryInputStream& rInStrm )


More information about the Libreoffice-commits mailing list