[Libreoffice-commits] core.git: Branch 'libreoffice-4-0' - libcmis/libcmis-0.3.0.patch

Cédric Bosdonnat cedric.bosdonnat at free.fr
Thu May 16 06:50:02 PDT 2013


 libcmis/libcmis-0.3.0.patch |   13 +++++++++++++
 1 file changed, 13 insertions(+)

New commits:
commit e33f51a6bec412e988ab7750309358512a3c0614
Author: Cédric Bosdonnat <cedric.bosdonnat at free.fr>
Date:   Thu May 16 15:07:44 2013 +0200

    fdo#64577, CMIS: fixed crasher in libcmis
    
    The crash is handled, but the huge files' size won't be properly handled
    on 32bits builds: would require a libcmis API change.
    
    Change-Id: I8ef1190a4d1de7d91a67ec20330db9e1747dfdc2
    (cherry picked from commit 7a6f5186a8e4089181f57af44fa4654fe692856b)
    Reviewed-on: https://gerrit.libreoffice.org/3921
    Reviewed-by: Michael Stahl <mstahl at redhat.com>
    Tested-by: Michael Stahl <mstahl at redhat.com>

diff --git a/libcmis/libcmis-0.3.0.patch b/libcmis/libcmis-0.3.0.patch
index d9dc70f..37644c8 100644
--- a/libcmis/libcmis-0.3.0.patch
+++ b/libcmis/libcmis-0.3.0.patch
@@ -20,3 +20,16 @@ index e8efd67..decb79a 100644
      xmlTextWriterEndElement( writer ); // End of Expires
      xmlTextWriterEndElement( writer ); // End of Timestamp
  
+diff --git src/libcmis/document.cxx src/libcmis/document.cxx
+index 7c2a8e6..e7014cb 100644
+--- src/libcmis/document.cxx
++++ src/libcmis/document.cxx
+@@ -78,7 +78,7 @@ namespace libcmis
+     {
+         long contentLength = 0;
+         map< string, libcmis::PropertyPtr >::const_iterator it = getProperties( ).find( string( "cmis:contentStreamLength" ) );
+-        if ( it != getProperties( ).end( ) && !it->second->getStrings( ).empty( ) )
++        if ( it != getProperties( ).end( ) && !it->second->getLongs( ).empty( ) )
+             contentLength = it->second->getLongs( ).front( );
+         return contentLength;
+     }


More information about the Libreoffice-commits mailing list