https://bugs.documentfoundation.org/show_bug.cgi?id=90351
--- Comment #6 from Julien Nabet <[email protected]> --- About the warning, the root cause seems the fact that Content::getPropertyValues (see http://opengrok.libreoffice.org/xref/core/ucb/source/ucp/cmis/cmis_content.cxx#564) doesn't manage "CasePreservingURL" case. With this patch, we don't have the warning but it still crashes Also, I suppose we should retrieve the value from the server instead of always setting "true". diff --git a/ucb/source/ucp/cmis/cmis_content.cxx b/ucb/source/ucp/cmis/cmis_content.cxx index 1fc045a5..54c2097 100644 --- a/ucb/source/ucp/cmis/cmis_content.cxx +++ b/ucb/source/ucp/cmis/cmis_content.cxx @@ -762,6 +762,10 @@ namespace cmis { xRow->appendBoolean( rProp, false ); } + else if ( rProp.Name == "CasePreservingURL" ) + { + xRow->appendBoolean( rProp, true ); + } else if ( rProp.Name == "TargetURL" ) { xRow->appendString( rProp, "" ); -- You are receiving this mail because: You are the assignee for the bug.
_______________________________________________ Libreoffice-bugs mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs
