[Libreoffice-bugs] [Bug 90351] CMIS: crashes with "index out of range!" when saving a document

2015-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90351

Andras Timar  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |tima...@gmail.com
   |desktop.org |

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90351] CMIS: crashes with "index out of range!" when saving a document

2015-05-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90351

Julien Nabet  changed:

   What|Removed |Added

Version|4.4.3.2 rc  |4.4.1.2 release

--- Comment #10 from Julien Nabet  ---
Achim: thank you for your feedback. Version must correspond to the earliest
version, so I put back the former value.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90351] CMIS: crashes with "index out of range!" when saving a document

2015-05-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90351

Achim Derigs  changed:

   What|Removed |Added

Version|4.4.1.2 release |4.4.3.2 rc

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90351] CMIS: crashes with "index out of range!" when saving a document

2015-05-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90351

--- Comment #9 from Achim Derigs  ---
Same behaviour with 4.4.3.2 ...

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90351] CMIS: crashes with "index out of range!" when saving a document

2015-03-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90351

--- Comment #8 from Julien Nabet  ---
Cédric/Cao: I'm a bit stuck because I don't know if the problem is this:
string baseTypeReq =
"//atom:entry[1]//cmis:propertyId[@propertyDefinitionId='cmis:baseTypeId']/cmis:value/text()";

or if we just don't manage a specific answer (BTW, I don't know how to read it)
from the server or something else.

Just to be sure, are you still both working on libcmis or should I cc someone
else?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90351] CMIS: crashes with "index out of range!" when saving a document

2015-03-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90351

--- Comment #7 from Julien Nabet  ---
Digging on it with gdb, the problem is in
AtomPubSession::createObjectFromEntryDoc (cmis/src/libcmis/atom-session.cxx)
baseType retrieved is empty so cmisObject is empty
so libcmis::DocumentPtr AtomFolder::createDocument (from
cmis/src/libcmis/atom-folder.cxx) throws an exception.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90351] CMIS: crashes with "index out of range!" when saving a document

2015-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90351

--- Comment #6 from Julien Nabet  ---
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
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90351] CMIS: crashes with "index out of range!" when saving a document

2015-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90351

--- Comment #5 from Julien Nabet  ---
Created attachment 114479
  --> https://bugs.documentfoundation.org/attachment.cgi?id=114479&action=edit
a gdb session for ucbhelper::PropertyValueSet::getObject

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90351] CMIS: crashes with "index out of range!" when saving a document

2015-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90351

Julien Nabet  changed:

   What|Removed |Added

 CC||cao.cuong@gmail.com,
   ||cedric.bosdonnat.ooo@free.f
   ||r

--- Comment #4 from Julien Nabet  ---
Cédric/Cao: thought you might be interested in this one. (bt with symbols has
been attached)

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90351] CMIS: crashes with "index out of range!" when saving a document

2015-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90351

Julien Nabet  changed:

   What|Removed |Added

   Keywords||have-backtrace
   Priority|medium  |high
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90351] CMIS: crashes with "index out of range!" when saving a document

2015-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90351

--- Comment #3 from Julien Nabet  ---
Created attachment 114478
  --> https://bugs.documentfoundation.org/attachment.cgi?id=114478&action=edit
bt with debug symbols

On pc Debian x86-64 with master sources updated today, I could reproduce this.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90351] CMIS: crashes with "index out of range!" when saving a document

2015-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90351

--- Comment #2 from Julien Nabet  ---
I've received the email about login, could you provide the url?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90351] CMIS: crashes with "index out of range!" when saving a document

2015-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90351

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet  ---
I can give it a try and retrieve a bt if I can reproduce this, so if you've got
some time to create an account for me...

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90351] CMIS: crashes with "index out of range!" when saving a document

2015-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90351

Julien Nabet  changed:

   What|Removed |Added

Version|unspecified |4.4.1.2 rc

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs