Hi,
I found a race condition between
1) connectivity::hsqldb::ODriverDelegator::flushConnections()
(in file connectivity/source/drivers/hsqldb/HDriver.cxx around line 620)
walking over m_aConnections
2) connectivity::hsqldb::ODriverDelegator::disposing()
(same file around line 565)
calling
m_aConnections.clear();
TWeakPairVector().swap(m_aConnections);
which invalidates the iterators used by flushConnection()
Plus also probably, race condition between flushConnections() calling
flush() and disposing() disposing the underlying connection (although
this is probably handled correctly by the exception catching...).
So I thought, easy, make them exclusive by taking a mutex. That's what
the attached patch does. But then, when running
JunitTest_dbaccess_complex, I get a deadlock because:
1) One thread is in connectivity::hsqldb::flushConnections, holding
the ODriverDelegator m_aMutex, calling flush(), which eventually
tries to get the AffineBridge::v_callInto_v m_outerMutex .
2) Another thread is in AffineBridge::v_callInto_v, holding
m_outerMutex, which calls into
connectivity::hsqldb::ODriverDelegator::disposing()
which tries to get the ODriverDelegator m_aMutex
And here we have the deadlock. I'm not sure what to do about this. Anybody has some help to offer?
To reproduce, apply the attached patch and then
make JunitTest_dbaccess_complex
a few times, you should get the problem.
Thanks in advance for any idea or help.
Some details (full bt attached):
(gdb) thread 3
[Switching to thread 3 (Thread 0x2b4fecb5f700 (LWP 4543))]
#14 0x00002b4ff45f6186 in AffineBridge::v_callInto_v (this=0x1ca77b0, pCallee=0x2b4fd23f9dda
<s_pull(va_list*)>, pParam=0x2b4fecb5d3c0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/AffineBridge/AffineBridge.cxx:270
270 outerDispatch(1);
(gdb) frame 14
#14 0x00002b4ff45f6186 in AffineBridge::v_callInto_v (this=0x1ca77b0, pCallee=0x2b4fd23f9dda
<s_pull(va_list*)>, pParam=0x2b4fecb5d3c0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/AffineBridge/AffineBridge.cxx:270
270 outerDispatch(1);
(gdb) list 250
245 while(mm != CB_DONE);
246 }
247
248 void AffineBridge::v_callInto_v(uno_EnvCallee * pCallee, va_list * pParam)
249 {
250 osl::MutexGuard guard(m_outerMutex); // only one thread at a time can call into
251
252 if (m_innerThreadId == 0) // no inner thread yet
253 {
254 m_pInnerThread = new InnerThread(this);
(gdb) print m_outerMutex
$7 = {
mutex = 0x1ca76e0
}
(gdb) frame 6
#6 0x00002b4ff40b8342 in
connectivity::hsqldb::ODriverDelegator::disposing (this=0x1ca1cf0, Source=...)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/connectivity/source/drivers/hsqldb/HDriver.cxx:566
566 ::osl::MutexGuard aGuard(m_aMutex);
(gdb) print m_aMutex
$8 = {
mutex = 0x1ca1010
}
(gdb) thread 2
[Switching to thread 2 (Thread 0x2b501f11d700 (LWP 4546))]
#0 __lll_lock_wait () at ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:135
135 ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: No such file or directory.
(gdb) frame 6
#6 0x00002b4ff45f60d3 in AffineBridge::v_callInto_v (this=0x1ca77b0, pCallee=0x2b4fd23f9dda
<s_pull(va_list*)>,
pParam=0x2b501f11b600)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/AffineBridge/AffineBridge.cxx:250
250 osl::MutexGuard guard(m_outerMutex); // only one thread at a time can call into
(gdb) print m_outerMutex
$9 = {
mutex = 0x1ca76e0
}
(gdb) frame 23
#23 0x00002b4ff40af4cf in connectivity::hsqldb::OHsqlConnection::flush (this=0x2358ad0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/connectivity/source/drivers/hsqldb/HConnection.cxx:143
143 Reference< XDatabaseMetaData2 >
xMeta2(m_xConnection->getMetaData(),UNO_QUERY_THROW);
(gdb) up
#24 0x00002b4ff40b8a68 in connectivity::hsqldb::ODriverDelegator::flushConnections (this=0x1ca1cf0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/connectivity/source/drivers/hsqldb/HDriver.cxx:624
624 xCon->flush();
(gdb) print m_aMutex
$10 = {
mutex = 0x1ca1010
}
(gdb) list 614,631
614 void ODriverDelegator::flushConnections()
615 {
616 ::osl::MutexGuard aGuard(m_aMutex);
617
618 for (TWeakPairVector::iterator i = m_aConnections.begin(); i !=
m_aConnections.end(); ++i)
619 {
620 try
621 {
622 Reference<XFlushable> xCon(i->second.second.first.get(),UNO_QUERY);
623 if (xCon.is())
624 xCon->flush();
625 }
626 catch(Exception&)
627 {
628 DBG_UNHANDLED_EXCEPTION();
629 }
630 }
631 }
--
Lionel
diff --git a/connectivity/source/drivers/hsqldb/HDriver.cxx
b/connectivity/source/drivers/hsqldb/HDriver.cxx
index 87eb271..3addaaa 100644
--- a/connectivity/source/drivers/hsqldb/HDriver.cxx
+++ b/connectivity/source/drivers/hsqldb/HDriver.cxx
@@ -613,6 +613,8 @@ namespace connectivity
void ODriverDelegator::flushConnections()
{
+ ::osl::MutexGuard aGuard(m_aMutex);
+
TWeakPairVector::iterator aEnd = m_aConnections.end();
for (TWeakPairVector::iterator i = m_aConnections.begin(); aEnd != i; ++i)
{
diff --git a/dbaccess/JunitTest_dbaccess_complex.mk b/dbaccess/JunitTest_dbaccess_complex.mk
index e3f2c00..913d7aa 100644
--- a/dbaccess/JunitTest_dbaccess_complex.mk
+++ b/dbaccess/JunitTest_dbaccess_complex.mk
@@ -25,8 +25,7 @@ $(eval $(call gb_JunitTest_set_defs,dbaccess_complex,\
))
$(eval $(call gb_JunitTest_add_classes,dbaccess_complex,\
- complex.dbaccess.Beamer \
- complex.dbaccess.PropertyBag \
+ complex.dbaccess.RowSet \
))
$(eval $(call gb_JunitTest_add_sourcefiles,dbaccess_complex,\
diff --git a/dbaccess/qa/complex/dbaccess/RowSet.java b/dbaccess/qa/complex/dbaccess/RowSet.java
index 2763ac3..36a1bbd 100644
--- a/dbaccess/qa/complex/dbaccess/RowSet.java
+++ b/dbaccess/qa/complex/dbaccess/RowSet.java
@@ -208,23 +208,31 @@ public class RowSet extends TestCase
System.out.println("testing testRowSet");
createTestCase(true);
+ System.out.println("testing testRowSet sequential");
// sequential positioning
m_resultSet.beforeFirst();
testSequentialPositining(m_resultSet, m_row);
+ System.out.println("testing testRowSet absolute");
// absolute positioning
testAbsolutePositioning(m_resultSet, m_row);
+ System.out.println("testing testRowSet modify");
// position during modify
testModifyPosition(m_resultSet, m_row);
+ System.out.println("testing testRowSet 3rd");
// 3rd test
test3(createClone(), m_resultSet);
+ System.out.println("testing testRowSet 4th");
// 4th test
test4(m_resultSet);
+ System.out.println("finished testing testRowSet 4th");
+ // System.out.println("testing testRowSet concurrent");
// concurrent (multi threaded) access to the row set and its clones
- testConcurrentAccess(m_resultSet);
+ // testConcurrentAccess(m_resultSet);
+ // System.out.println("finished testRowSet concurrent");
}
@@ -401,7 +409,7 @@ public class RowSet extends TestCase
}
- @Test
+ // @Test
public void testRowSetEvents() throws java.lang.Exception
{
System.out.println("testing RowSet Events");
@@ -757,7 +765,7 @@ public class RowSet extends TestCase
/** checks whether deletions on the main RowSet properly interfere (or don't interfere) with
the movement
* on a clone of the RowSet
*/
- @Test
+ // @Test
public void testCloneMovesPlusDeletions() throws SQLException, UnknownPropertyException,
WrappedTargetException
{
createTestCase(true);
@@ -826,7 +834,7 @@ public class RowSet extends TestCase
/** checks whether insertions on the main RowSet properly interfere (or don't interfere) with
the movement
* on a clone of the RowSet
*/
- @Test
+ // @Test
public void testCloneMovesPlusInsertions() throws SQLException, UnknownPropertyException,
WrappedTargetException, PropertyVetoException, com.sun.star.lang.IllegalArgumentException
{
createTestCase(true);
@@ -1012,7 +1020,7 @@ public class RowSet extends TestCase
/** checks the XParametersSupplier functionality of a RowSet
*/
- @Test
+ // @Test
public void testParameters()
{
createTestCase(false);
[Switching to thread 2 (Thread 0x2b501f11d700 (LWP 4546))]
#24 0x00002b4ff40b8a68 in connectivity::hsqldb::ODriverDelegator::flushConnections (this=0x1ca1cf0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/connectivity/source/drivers/hsqldb/HDriver.cxx:624
624 xCon->flush();
#0 __lll_lock_wait () at ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:135
#1 0x00002b4fd065a4d4 in _L_lock_952 () from /lib/x86_64-linux-gnu/libpthread.so.0
#2 0x00002b4fd065a336 in __GI___pthread_mutex_lock (mutex=0x1ca76e0) at
../nptl/pthread_mutex_lock.c:114
#3 0x00002b4fcfcdb58a in osl_acquireMutex (pMutex=0x1ca76e0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/sal/osl/unx/mutex.cxx:99
#4 0x00002b4ff45f69cb in osl::Mutex::acquire (this=this@entry=0x1ca7820)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/osl/mutex.hxx:56
#5 0x00002b4ff45f6c88 in osl::Guard<osl::Mutex>::Guard (this=0x2b501f11b4d0, t=...)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/osl/mutex.hxx:129
#6 0x00002b4ff45f60d3 in AffineBridge::v_callInto_v (this=0x1ca77b0, pCallee=0x2b4fd23f9dda
<s_pull(va_list*)>,
pParam=0x2b501f11b600)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/AffineBridge/AffineBridge.cxx:250
#7 0x00002b4ff45f6b07 in cppu::Enterable_call_callInto_v (context=0x1ca77b0,
pCallee=0x2b4fd23f9dda <s_pull(va_list*)>, pParam=0x2b501f11b600)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:69
#8 0x00002b4ff47fbe97 in cppu::Enterable::callInto_v (this=0x1ca77b0,
pCallee=pCallee@entry=0x2b4fd23f9dda <s_pull(va_list*)>, pParam=pParam@entry=0x2b501f11b600)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:53
#9 0x00002b4ff47fbccf in Base::v_callInto_v (this=0x1ca7900, pCallee=0x2b4fd23f9dda
<s_pull(va_list*)>,
pParam=0x2b501f11b600)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/helper/purpenv/helper_purpenv_Environment.cxx:508
#10 0x00002b4ff47fbf6f in cppu::Enterable_call_callInto_v (context=0x1ca7900,
pCallee=0x2b4fd23f9dda <s_pull(va_list*)>, pParam=0x2b501f11b600)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:69
#11 0x00002b4fd23fa9b3 in cppu::Enterable::callInto_v (this=this@entry=0x1ca7900,
pCallee=pCallee@entry=0x2b4fd23f9dda <s_pull(va_list*)>, pParam=pParam@entry=0x2b501f11b600)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:53
#12 0x00002b4fd23faac8 in cppu::Enterable::callInto (this=this@entry=0x1ca7900,
pCallee=pCallee@entry=0x2b4fd23f9dda <s_pull(va_list*)>)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:90
#13 0x00002b4fd23f9ed0 in s_callInto_v (pEnv=pEnv@entry=0x1ca7330,
pCallee=pCallee@entry=0x2b4fd23fa0d5 <s_environment_invoke_vv(va_list*)>,
pParam=pParam@entry=0x2b501f11b730)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:233
#14 0x00002b4fd23f9f9a in s_callInto (pEnv=0x1ca7330,
pCallee=pCallee@entry=0x2b4fd23fa0d5 <s_environment_invoke_vv(va_list*)>)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:244
#15 0x00002b4fd23fa332 in s_environment_invoke_v (pCurrEnv=0x0,
pTargetEnv=pTargetEnv@entry=0x1ca7330,
pCallee=pCallee@entry=0x2b4ff47fd7c6 <s_dispatcher_v(va_list*)>,
pParam=pParam@entry=0x2b501f11b8a0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:300
#16 0x00002b4fd23fa3a0 in uno_Environment_invoke_v (pTargetEnv=pTargetEnv@entry=0x1ca7330,
pCallee=pCallee@entry=0x2b4ff47fd7c6 <s_dispatcher_v(va_list*)>,
pParam=pParam@entry=0x2b501f11b8a0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:312
#17 0x00002b4fd23fa472 in uno_Environment_invoke (pEnv=0x1ca7330,
pCallee=0x2b4ff47fd7c6 <s_dispatcher_v(va_list*)>)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:321
#18 0x00002b4ff47fdccc in Proxy::dispatch (this=this@entry=0x2359b20,
pReturnTypeRef=pReturnTypeRef@entry=0x20d2980, pParams=pParams@entry=0x0,
nParams=nParams@entry=0,
pMemberType=pMemberType@entry=0x20d0fb0, pReturn=pReturn@entry=0x2b501f11bb40,
pArgs=0x2b501f11bb30,
ppException=0x2b501f11bbe0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx:445
#19 0x00002b4ff47fcc7d in s_Proxy_dispatch (pUnoI=0x2359b20,
pMemberType=pMemberType@entry=0x20d0fb0,
pReturn=pReturn@entry=0x2b501f11bb40, pArgs=pArgs@entry=0x2b501f11bb30,
ppException=ppException@entry=0x2b501f11bbe0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx:170
#20 0x00002b4fe8302fd2 in cpp2uno_call (pThis=pThis@entry=0x20e3d90, pMemberTypeDescr=0x20d0fb0,
pReturnTypeRef=pReturnTypeRef@entry=0x20d2980, nParams=nParams@entry=0,
pParams=pParams@entry=0x0,
gpreg=0x2b501f11bf70, gpreg@entry=0x2b501f11bf60, fpreg=0x2b501f11bf90, ovrflw=0x2b501f11bfe0,
pRegisterReturn=0x2b501f11bf40)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx:186
#21 0x00002b4fe8303a6a in cpp_vtable_call (nFunctionIndex=<optimized out>, nVtableOffset=0,
gpreg=0x2b501f11bf60, fpreg=0x2b501f11bf90, ovrflw=0x2b501f11bfe0,
pRegisterReturn=0x2b501f11bf40)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx:377
#22 0x00002b4fe831ac12 in privateSnippetExecutor ()
from /home/master/src/libreoffice/workdirs/libreoffice-5-1/instdir/program/libgcc3_uno.so
#23 0x00002b4ff40af4cf in connectivity::hsqldb::OHsqlConnection::flush (this=0x2358ad0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/connectivity/source/drivers/hsqldb/HConnection.cxx:143
#24 0x00002b4ff40b8a68 in connectivity::hsqldb::ODriverDelegator::flushConnections (this=0x1ca1cf0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/connectivity/source/drivers/hsqldb/HDriver.cxx:624
#25 0x00002b4ff40da97c in connectivity::hsqldb::OConnectionController::queryTermination
(this=0x20b3200)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/connectivity/source/drivers/hsqldb/HTerminateListener.cxx:43
#26 0x00002b4fea4b11ee in framework::Desktop::impl_sendQueryTerminationEvent
(this=this@entry=0x19f6fc0,
lCalledListener=std::__debug::vector of length 0, capacity 0,
bVeto=bVeto@entry=@0x2b501f11c26b: false)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/framework/source/services/desktop.cxx:1604
#27 0x00002b4fea4ace85 in framework::Desktop::terminate (this=0x19f6fc0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/framework/source/services/desktop.cxx:225
#28 0x00002b4fe830e2f1 in gcc3::callVirtualMethod(void*, unsigned int, void*,
_typelib_TypeDescriptionReference*, bool, unsigned long*, unsigned int, unsigned long*, double*) ()
from /home/master/src/libreoffice/workdirs/libreoffice-5-1/instdir/program/libgcc3_uno.so
#29 0x00002b4fe830d2bb in cpp_call (pThis=pThis@entry=0x213f740, aVtableSlot=...,
pReturnTypeRef=0x8ce940,
nParams=0, pParams=0x0, pUnoReturn=pUnoReturn@entry=0x1cac130, pUnoArgs=0x0,
ppUnoExc=0x2b501f11c768)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:245
#30 0x00002b4fe830dcd2 in bridges::cpp_uno::shared::unoInterfaceProxyDispatch (pUnoI=0x213f740,
pMemberDescr=0x257d6e0, pReturn=0x1cac130, pArgs=0x0, ppException=0x2b501f11c768)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:443
#31 0x00002b4fe9bc171e in binaryurp::IncomingRequest::execute_throw (this=this@entry=0x233f990,
returnValue=returnValue@entry=0x2b501f11c9e0, outArguments=outArguments@entry=0x2b501f11ca60)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/binaryurp/source/incomingrequest.cxx:241
#32 0x00002b4fe9bc062e in binaryurp::IncomingRequest::execute (this=0x233f990)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/binaryurp/source/incomingrequest.cxx:73
#33 0x00002b4fe9be3f36 in binaryurp::(anonymous namespace)::request (pThreadSpecificData=0x233f990)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/binaryurp/source/reader.cxx:85
#34 0x00002b4fd23c56ea in cppu_threadpool::JobQueue::enter (this=0x2173990, nDisposeId=35053984,
bReturnWhenNoJob=bReturnWhenNoJob@entry=true)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/threadpool/jobqueue.cxx:115
#35 0x00002b4fd23c9142 in cppu_threadpool::ORequestThread::run (this=0x216e1a0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/threadpool/thread.cxx:171
#36 0x00002b4fd23c9520 in osl::threadFunc (param=0x216e1b0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/osl/thread.hxx:184
#37 0x00002b4fcfceeccf in osl_thread_start_Impl (pData=0x216d900)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/sal/osl/unx/thread.cxx:240
#38 0x00002b4fd06580a4 in start_thread (arg=0x2b501f11d700) at pthread_create.c:309
#39 0x00002b4fd038d04d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111
[Switching to thread 3 (Thread 0x2b4fecb5f700 (LWP 4543))]
#0 __lll_lock_wait () at ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:135
135 ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: No such file or directory.
#0 __lll_lock_wait () at ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:135
#1 0x00002b4fd065a4d4 in _L_lock_952 () from /lib/x86_64-linux-gnu/libpthread.so.0
#2 0x00002b4fd065a336 in __GI___pthread_mutex_lock (mutex=0x1ca1010) at
../nptl/pthread_mutex_lock.c:114
#3 0x00002b4fcfcdb58a in osl_acquireMutex (pMutex=0x1ca1010)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/sal/osl/unx/mutex.cxx:99
#4 0x00002b4ff40a475f in osl::Mutex::acquire (this=this@entry=0x1ca1d68)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/osl/mutex.hxx:56
#5 0x00002b4ff40ac28a in osl::Guard<osl::Mutex>::Guard (this=0x2b4fecb5cc30, t=...)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/osl/mutex.hxx:129
#6 0x00002b4ff40b8342 in connectivity::hsqldb::ODriverDelegator::disposing (this=0x1ca1cf0,
Source=...)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/connectivity/source/drivers/hsqldb/HDriver.cxx:566
#7 0x00002b4fe830e2f1 in gcc3::callVirtualMethod(void*, unsigned int, void*,
_typelib_TypeDescriptionReference*, bool, unsigned long*, unsigned int, unsigned long*, double*) ()
from /home/master/src/libreoffice/workdirs/libreoffice-5-1/instdir/program/libgcc3_uno.so
#8 0x00002b4fe830d2bb in cpp_call (pThis=pThis@entry=0x20b26d0, aVtableSlot=...,
pReturnTypeRef=0x8ce880,
nParams=1, pParams=0x9f3730, pUnoReturn=pUnoReturn@entry=0x2b4ff4c003c0,
pUnoArgs=0x2b4ff4bffe00,
ppUnoExc=0x2b4ff4bffe80)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:245
#9 0x00002b4fe830dcd2 in bridges::cpp_uno::shared::unoInterfaceProxyDispatch (pUnoI=0x20b26d0,
pMemberDescr=0x9f3640, pReturn=0x2b4ff4c003c0, pArgs=0x2b4ff4bffe00, ppException=0x2b4ff4bffe80)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:443
#10 0x00002b4ff47fd962 in s_dispatcher_v (pParam=pParam@entry=0x2b4ff4bffcf0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx:383
#11 0x00002b4fd23fa2ea in s_environment_invoke_v (pCurrEnv=pCurrEnv@entry=0x0,
pTargetEnv=pTargetEnv@entry=0x1b57550, pCallee=pCallee@entry=0x2b4ff47fd7c6
<s_dispatcher_v(va_list*)>,
pParam=pParam@entry=0x2b4ff4bffcf0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:293
#12 0x00002b4fd23fa221 in s_environment_invoke_vv (pParam=0x2b4ff4bffb80)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:276
#13 0x00002b4ff45f5f4b in AffineBridge::outerDispatch (this=this@entry=0x1ca77b0, loop=loop@entry=1)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/AffineBridge/AffineBridge.cxx:201
#14 0x00002b4ff45f6186 in AffineBridge::v_callInto_v (this=0x1ca77b0, pCallee=0x2b4fd23f9dda
<s_pull(va_list*)>,
pParam=0x2b4fecb5d3c0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/AffineBridge/AffineBridge.cxx:270
#15 0x00002b4ff45f6b07 in cppu::Enterable_call_callInto_v (context=0x1ca77b0,
pCallee=0x2b4fd23f9dda <s_pull(va_list*)>, pParam=0x2b4fecb5d3c0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:69
#16 0x00002b4ff47fbe97 in cppu::Enterable::callInto_v (this=0x1ca77b0,
pCallee=pCallee@entry=0x2b4fd23f9dda <s_pull(va_list*)>, pParam=pParam@entry=0x2b4fecb5d3c0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:53
#17 0x00002b4ff47fbccf in Base::v_callInto_v (this=0x1ca7900, pCallee=0x2b4fd23f9dda
<s_pull(va_list*)>,
pParam=0x2b4fecb5d3c0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/helper/purpenv/helper_purpenv_Environment.cxx:508
#18 0x00002b4ff47fbf6f in cppu::Enterable_call_callInto_v (context=0x1ca7900,
pCallee=0x2b4fd23f9dda <s_pull(va_list*)>, pParam=0x2b4fecb5d3c0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:69
#19 0x00002b4fd23fa9b3 in cppu::Enterable::callInto_v (this=this@entry=0x1ca7900,
pCallee=pCallee@entry=0x2b4fd23f9dda <s_pull(va_list*)>, pParam=pParam@entry=0x2b4fecb5d3c0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:53
#20 0x00002b4fd23faac8 in cppu::Enterable::callInto (this=this@entry=0x1ca7900,
pCallee=pCallee@entry=0x2b4fd23f9dda <s_pull(va_list*)>)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:90
#21 0x00002b4fd23f9ed0 in s_callInto_v (pEnv=pEnv@entry=0x1ca7330,
pCallee=pCallee@entry=0x2b4fd23fa0d5 <s_environment_invoke_vv(va_list*)>,
pParam=pParam@entry=0x2b4fecb5d4f0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:233
#22 0x00002b4fd23f9f9a in s_callInto (pEnv=0x1ca7330,
pCallee=pCallee@entry=0x2b4fd23fa0d5 <s_environment_invoke_vv(va_list*)>)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:244
#23 0x00002b4fd23fa332 in s_environment_invoke_v (pCurrEnv=0x0,
pTargetEnv=pTargetEnv@entry=0x1ca7330,
pCallee=pCallee@entry=0x2b4ff47fd7c6 <s_dispatcher_v(va_list*)>,
pParam=pParam@entry=0x2b4fecb5d660)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:300
#24 0x00002b4fd23fa3a0 in uno_Environment_invoke_v (pTargetEnv=pTargetEnv@entry=0x1ca7330,
pCallee=pCallee@entry=0x2b4ff47fd7c6 <s_dispatcher_v(va_list*)>,
pParam=pParam@entry=0x2b4fecb5d660)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:312
#25 0x00002b4fd23fa472 in uno_Environment_invoke (pEnv=0x1ca7330,
pCallee=0x2b4ff47fd7c6 <s_dispatcher_v(va_list*)>)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:321
#26 0x00002b4ff47fdccc in Proxy::dispatch (this=this@entry=0x1cb3ac0,
pReturnTypeRef=pReturnTypeRef@entry=0x8ce880, pParams=pParams@entry=0x20789e0,
nParams=nParams@entry=0,
pMemberType=pMemberType@entry=0x236b4c0, pReturn=pReturn@entry=0x2b4fecb5dd90,
pArgs=0x2b4fecb5d9a0,
ppException=0x2b4fecb5da30)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx:445
#27 0x00002b4ff47fcc7d in s_Proxy_dispatch (pUnoI=0x1cb3ac0, pMemberType=0x236b4c0,
pReturn=0x2b4fecb5dd90,
pArgs=0x2b4fecb5d9a0, ppException=0x2b4fecb5da30)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx:170
#28 0x00002b4ff37a7336 in com::sun::star::uno::UnoInterfaceReference::dispatch
(this=this@entry=0x1caadb8,
pMemberType=pMemberType@entry=0x236b4c0, pReturn=pReturn@entry=0x2b4fecb5dd90,
pArgs=pArgs@entry=0x2b4fecb5d9a0, ppException=ppException@entry=0x2b4fecb5da30)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/uno/dispatcher.hxx:159
#29 0x00002b4ff37a5e6c in (anonymous namespace)::binuno_proxy_dispatch (pUnoI=0x1caad90,
pMemberType=pMemberType@entry=0x236b4c0, pReturn=pReturn@entry=0x2b4fecb5dd90,
pArgs=pArgs@entry=0x2b4fecb5d9a0, ppException=ppException@entry=0x2b4fecb5da30)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/stoc/source/proxy_factory/proxyfac.cxx:283
#30 0x00002b4fe8302fd2 in cpp2uno_call (pThis=pThis@entry=0x20cdca0, pMemberTypeDescr=0x236b4c0,
pReturnTypeRef=pReturnTypeRef@entry=0x8ce880, nParams=nParams@entry=0,
pParams=pParams@entry=0x20789e0,
gpreg=0x2b4fecb5ddb8, gpreg@entry=0x2b4fecb5ddb0, fpreg=0x2b4fecb5dde0, ovrflw=0x2b4fecb5de30,
pRegisterReturn=0x2b4fecb5dd90)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx:186
#31 0x00002b4fe8303a6a in cpp_vtable_call (nFunctionIndex=<optimized out>, nVtableOffset=0,
gpreg=0x2b4fecb5ddb0, fpreg=0x2b4fecb5dde0, ovrflw=0x2b4fecb5de30,
pRegisterReturn=0x2b4fecb5dd90)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx:377
#32 0x00002b4fe831ac12 in privateSnippetExecutor ()
from /home/master/src/libreoffice/workdirs/libreoffice-5-1/instdir/program/libgcc3_uno.so
#33 0x00002b4fecd6e866 in dbaccess::OConnection::disposing (this=0x2058670)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/dbaccess/source/core/dataaccess/connection.cxx:492
#34 0x00002b4fd26a8e73 in cppu::OComponentHelper::dispose (this=0x2058670)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppuhelper/source/component.cxx:178
#35 0x00002b4feccdc32d in comphelper::disposeComponent<com::sun::star::sdbc::XConnection> (
_rxComp=uno::Reference to (dbaccess::OConnection *) 0x2058740)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/comphelper/types.hxx:109
#36 0x00002b4fecdbf35b in dbaccess::OSharedConnectionManager::disposing (this=0x1c9c020, Source=...)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/dbaccess/source/core/dataaccess/datasource.cxx:338
#37 0x00002b4fd26c51ae in cppu::OInterfaceContainerHelper::disposeAndClear (this=0x1cb1850,
rEvt=...)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppuhelper/source/interfacecontainer.cxx:312
#38 0x00002b4fd26c5e3a in cppu::OMultiTypeInterfaceContainerHelper::disposeAndClear
(this=this@entry=0x1cab420,
rEvt=...)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppuhelper/source/interfacecontainer.cxx:485
#39 0x00002b4fd26c0797 in cppu::WeakComponentImplHelperBase::dispose (this=this@entry=0x1cab3f0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppuhelper/source/implbase.cxx:108
#40 0x00002b4fece22098 in
cppu::WeakComponentImplHelper1<com::sun::star::sdbc::XConnection>::dispose (
this=0x1cab3f0) at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppuhelper/compbase1.hxx:60
#41 0x00002b4fece21761 in dbaccess::OSharedConnection::close (this=0x1cab3f0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/dbaccess/source/core/dataaccess/SharedConnection.hxx:84
#42 0x00002b4fe830e2f1 in gcc3::callVirtualMethod(void*, unsigned int, void*,
_typelib_TypeDescriptionReference*, bool, unsigned long*, unsigned int, unsigned long*, double*) ()
from /home/master/src/libreoffice/workdirs/libreoffice-5-1/instdir/program/libgcc3_uno.so
#43 0x00002b4fe830d2bb in cpp_call (pThis=pThis@entry=0x2077000, aVtableSlot=...,
pReturnTypeRef=0x8ce880,
nParams=0, pParams=0x0, pUnoReturn=pUnoReturn@entry=0x0, pUnoArgs=0x0, ppUnoExc=0x2b4fecb5e768)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:245
#44 0x00002b4fe830dcd2 in bridges::cpp_uno::shared::unoInterfaceProxyDispatch (pUnoI=0x2077000,
pMemberDescr=0x2535d80, pReturn=0x0, pArgs=0x0, ppException=0x2b4fecb5e768)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:443
#45 0x00002b4fe9bc171e in binaryurp::IncomingRequest::execute_throw (this=this@entry=0x212e470,
returnValue=returnValue@entry=0x2b4fecb5e9e0, outArguments=outArguments@entry=0x2b4fecb5ea60)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/binaryurp/source/incomingrequest.cxx:241
#46 0x00002b4fe9bc062e in binaryurp::IncomingRequest::execute (this=0x212e470)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/binaryurp/source/incomingrequest.cxx:73
#47 0x00002b4fe9be3f36 in binaryurp::(anonymous namespace)::request (pThreadSpecificData=0x212e470)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/binaryurp/source/reader.cxx:85
#48 0x00002b4fd23c56ea in cppu_threadpool::JobQueue::enter (this=0x21ca3a0, nDisposeId=34224976,
bReturnWhenNoJob=bReturnWhenNoJob@entry=true)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/threadpool/jobqueue.cxx:115
#49 0x00002b4fd23c9142 in cppu_threadpool::ORequestThread::run (this=0x20a3b50)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/threadpool/thread.cxx:171
#50 0x00002b4fd23c9520 in osl::threadFunc (param=0x20a3b60)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/osl/thread.hxx:184
#51 0x00002b4fcfceeccf in osl_thread_start_Impl (pData=0x26253a0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/sal/osl/unx/thread.cxx:240
#52 0x00002b4fd06580a4 in start_thread (arg=0x2b4fecb5f700) at pthread_create.c:309
#53 0x00002b4fd038d04d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111
[Switching to thread 2 (Thread 0x2b501f11d700 (LWP 4546))]
#0 __lll_lock_wait () at ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:135
135 in ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S
#0 __lll_lock_wait () at ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:135
No locals.
#1 0x00002b4fd065a4d4 in _L_lock_952 () from /lib/x86_64-linux-gnu/libpthread.so.0
No symbol table info available.
#2 0x00002b4fd065a336 in __GI___pthread_mutex_lock (mutex=0x1ca76e0) at
../nptl/pthread_mutex_lock.c:114
__PRETTY_FUNCTION__ = "__pthread_mutex_lock"
type = 4294966784
#3 0x00002b4fcfcdb58a in osl_acquireMutex (pMutex=0x1ca76e0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/sal/osl/unx/mutex.cxx:99
nRet = 0
#4 0x00002b4ff45f69cb in osl::Mutex::acquire (this=this@entry=0x1ca7820)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/osl/mutex.hxx:56
No locals.
#5 0x00002b4ff45f6c88 in osl::Guard<osl::Mutex>::Guard (this=0x2b501f11b4d0, t=...)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/osl/mutex.hxx:129
No locals.
#6 0x00002b4ff45f60d3 in AffineBridge::v_callInto_v (this=0x1ca77b0, pCallee=0x2b4fd23f9dda
<s_pull(va_list*)>,
pParam=0x2b501f11b600)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/AffineBridge/AffineBridge.cxx:250
guard = {
pT = 0x1ca7820
}
resetId = <optimized out>
#7 0x00002b4ff45f6b07 in cppu::Enterable_call_callInto_v (context=0x1ca77b0,
pCallee=0x2b4fd23f9dda <s_pull(va_list*)>, pParam=0x2b501f11b600)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:69
No locals.
#8 0x00002b4ff47fbe97 in cppu::Enterable::callInto_v (this=0x1ca77b0,
pCallee=pCallee@entry=0x2b4fd23f9dda <s_pull(va_list*)>, pParam=pParam@entry=0x2b501f11b600)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:53
No locals.
#9 0x00002b4ff47fbccf in Base::v_callInto_v (this=0x1ca7900, pCallee=0x2b4fd23f9dda
<s_pull(va_list*)>,
pParam=0x2b501f11b600)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/helper/purpenv/helper_purpenv_Environment.cxx:508
No locals.
#10 0x00002b4ff47fbf6f in cppu::Enterable_call_callInto_v (context=0x1ca7900,
pCallee=0x2b4fd23f9dda <s_pull(va_list*)>, pParam=0x2b501f11b600)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:69
No locals.
#11 0x00002b4fd23fa9b3 in cppu::Enterable::callInto_v (this=this@entry=0x1ca7900,
pCallee=pCallee@entry=0x2b4fd23f9dda <s_pull(va_list*)>, pParam=pParam@entry=0x2b501f11b600)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:53
No locals.
#12 0x00002b4fd23faac8 in cppu::Enterable::callInto (this=this@entry=0x1ca7900,
pCallee=pCallee@entry=0x2b4fd23f9dda <s_pull(va_list*)>)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:90
param = {{
gp_offset = 16,
fp_offset = 48,
overflow_arg_area = 0x2b501f11b6e0,
reg_save_area = 0x2b501f11b620
}}
#13 0x00002b4fd23f9ed0 in s_callInto_v (pEnv=pEnv@entry=0x1ca7330,
pCallee=pCallee@entry=0x2b4fd23fa0d5 <s_environment_invoke_vv(va_list*)>,
pParam=pParam@entry=0x2b501f11b730)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:233
pEnterable = 0x1ca7900
#14 0x00002b4fd23f9f9a in s_callInto (pEnv=0x1ca7330,
pCallee=pCallee@entry=0x2b4fd23fa0d5 <s_environment_invoke_vv(va_list*)>)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:244
param = {{
gp_offset = 16,
fp_offset = 48,
overflow_arg_area = 0x2b501f11b810,
reg_save_area = 0x2b501f11b750
}}
#15 0x00002b4fd23fa332 in s_environment_invoke_v (pCurrEnv=0x0,
pTargetEnv=pTargetEnv@entry=0x1ca7330,
pCallee=pCallee@entry=0x2b4ff47fd7c6 <s_dispatcher_v(va_list*)>,
pParam=pParam@entry=0x2b501f11b8a0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:300
pNextEnv = 0x1ca7330
#16 0x00002b4fd23fa3a0 in uno_Environment_invoke_v (pTargetEnv=pTargetEnv@entry=0x1ca7330,
pCallee=pCallee@entry=0x2b4ff47fd7c6 <s_dispatcher_v(va_list*)>,
pParam=pParam@entry=0x2b501f11b8a0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:312
No locals.
#17 0x00002b4fd23fa472 in uno_Environment_invoke (pEnv=0x1ca7330,
pCallee=0x2b4ff47fd7c6 <s_dispatcher_v(va_list*)>)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:321
param = {{
gp_offset = 16,
fp_offset = 48,
overflow_arg_area = 0x2b501f11b980,
reg_save_area = 0x2b501f11b8c0
}}
#18 0x00002b4ff47fdccc in Proxy::dispatch (this=this@entry=0x2359b20,
pReturnTypeRef=pReturnTypeRef@entry=0x20d2980, pParams=pParams@entry=0x0,
nParams=nParams@entry=0,
pMemberType=pMemberType@entry=0x20d0fb0, pReturn=pReturn@entry=0x2b501f11bb40,
pArgs=0x2b501f11bb30,
ppException=0x2b501f11bbe0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx:445
args = 0x2b501f11b9b0
return_td = 0x20d2980
ret = 0x2b501f11b990
exc_data = <error reading variable: Cannot access memory at address 0x8>
exc = 0x2b501f11ba50
#19 0x00002b4ff47fcc7d in s_Proxy_dispatch (pUnoI=0x2359b20,
pMemberType=pMemberType@entry=0x20d0fb0,
pReturn=pReturn@entry=0x2b501f11bb40, pArgs=pArgs@entry=0x2b501f11bb30,
ppException=ppException@entry=0x2b501f11bbe0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx:170
pThis = 0x2359b20
param = {
pName = 0x1,
pTypeRef = 0xafb3615c10a87e00,
bIn = 128 '\200',
bOut = 41 ')'
}
nParams = 0
pParams = 0x0
pReturnTypeRef = 0x20d2980
#20 0x00002b4fe8302fd2 in cpp2uno_call (pThis=pThis@entry=0x20e3d90, pMemberTypeDescr=0x20d0fb0,
pReturnTypeRef=pReturnTypeRef@entry=0x20d2980, nParams=nParams@entry=0,
pParams=pParams@entry=0x0,
gpreg=0x2b501f11bf70, gpreg@entry=0x2b501f11bf60, fpreg=0x2b501f11bf90, ovrflw=0x2b501f11bfe0,
pRegisterReturn=0x2b501f11bf40)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx:186
nr_gpr = 2
nr_fpr = 0
pReturnTypeDescr = 0x20d2980
pUnoReturn = 0x2b501f11bb40
pCppReturn = 0x2b501f11c000
pUnoArgs = 0x2b501f11bb30
pCppArgs = 0x2b501f11bb30
pTempIndices = 0x2b501f11bb30
ppTempParamTypeDescr = 0x2b501f11bb30
nTempIndices = 0
__PRETTY_FUNCTION__ = "typelib_TypeClass
cpp2uno_call(bridges::cpp_uno::shared::CppInterfaceProxy*, const typelib_TypeDescription*,
typelib_TypeDescriptionReference*, sal_Int32, typelib_MethodParameter*, void**, void**, voi"...
aUnoExc = <error reading variable: Cannot access memory at address 0x9>
pUnoExc = 0x2b501f11bc30
#21 0x00002b4fe8303a6a in cpp_vtable_call (nFunctionIndex=<optimized out>, nVtableOffset=0,
gpreg=0x2b501f11bf60, fpreg=0x2b501f11bf90, ovrflw=0x2b501f11bfe0,
pRegisterReturn=0x2b501f11bf40)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx:377
pMethodTD = 0x20d0fb0
pThis = 0x20e3db8
pCppI = 0x20e3d90
pTypeDescr = 0x1c79a20
nMemberPos = 13
__PRETTY_FUNCTION__ = "typelib_TypeClass cpp_vtable_call(sal_Int32, sal_Int32, void**,
void**, void**, sal_uInt64*)"
aMemberDescr = {
_pTypeDescr = 0x20d0fb0
}
eRet = <optimized out>
#22 0x00002b4fe831ac12 in privateSnippetExecutor ()
from /home/master/src/libreoffice/workdirs/libreoffice-5-1/instdir/program/libgcc3_uno.so
No symbol table info available.
#23 0x00002b4ff40af4cf in connectivity::hsqldb::OHsqlConnection::flush (this=0x2358ad0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/connectivity/source/drivers/hsqldb/HConnection.cxx:143
xMeta2 = uno::Reference to (com::sun::star::uno::XInterface *) 0x210a101
aInfo = uno::Sequence of length 11088 = {{
Name = "",
Handle = 30064944,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = 521257328
}, {
Name = "",
Handle = 521257200,
Value = Python Exception <type 'exceptions.AssertionError'> :
,
State = 37063376
}, {
Name =
"\x1cf0NJ\000\000饘香香香暧馧香ྙA\000\000\000기ǽ\000\000p\237\000\000\001\000\000\000㑠ȍ\000\000㾐㍋\000\000餮香香香户〱)࿑A\000\000\000\001\000\000\000\031\000\000\000潀Ȇ",
'\000' <repeats 14 times>,
"\066\000\000܀1\000\000\000鎠Ƶ\000\000眈Ȇ\000\000㤀ȋ\000\000ޒ訪\xffff\xffff>\000\000܀A\000\000\000\002\000\000\000\031\000\000\000ǹ\000\000삐ȴ\000\000\000\000\000\000\000\000\000\000\070\000\000܀Á\000\000\000\003\000\000\000\031\000\000\000䌀lj\000\000㍀ȋ\000\000\000\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\xd9a0dž\000\000\001\000\000\000\001\000\000\000镠\215\000\000\214\000\000\000\000\000\000╀ȍ\000\000\000\000\000\000"...,
Handle = 34644416,
Value = empty uno::Any,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = <error reading variable: Cannot access memory at address 0xafb3615c10a87e04>,
Handle = 37063456,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = <error reading variable: Cannot access memory at address 0xafb3615c10a87e04>,
Handle = 16,
Value = <error reading variable: Cannot access memory at address 0x49>,
State = 521257424
}, {
Name =
"\003\000晦晦\000\000\000\000\000\000\000\000\xbd8\x2b4f\000ఐ\x2b4f\000\x1cf0NJ\000\000饘香香香暧馧香ྙA\000\000\000기ǽ\000\000p\237\000\000\001\000\000\000㑠ȍ\000\000㾐㍋\000\000餮香香香户〱)࿑A\000\000\000\001\000\000\000\031\000\000\000潀Ȇ",
'\000' <repeats 14 times>,
"\066\000\000܀1\000\000\000鎠Ƶ\000\000眈Ȇ\000\000㤀ȋ\000\000ޒ訪\xffff\xffff>\000\000܀A\000\000\000\002\000\000\000\031\000\000\000ǹ\000\000삐ȴ\000\000\000\000\000\000\000\000\000\000\070\000\000܀Á\000\000\000\003\000\000\000\031\000\000\000䌀lj\000\000㍀ȋ\000\000\000\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\xd9a0dž\000\000\001\000\000\000\001\000\000\000"...,
Handle = 521257536,
Value = <error reading variable: Cannot access memory at address 0x48a0458d48000008>,
State = 521257712
}, {
Name =
"\v\000晦晦陠Ɵ\000\000\000\000\000\000䨈\x2b4f\000灠Ɵ\000\000榀Ɵ\000\000灠Ɵ\000\000\000晦晦晦䩈\x2b4f\000䪀\x2b4f\000䫀\x2b4f\000䫸\x2b4f\000䬰\x2b4f\000䰐\x2b4f\000䱨\x2b4f\000䲘\x2b4f\000䳐\x2b4f\000䴈\x2b4f\000䴸\x2b4f\000䤠Ɵ\000\000艰Ɵ\000\000斀Ɵ\000\000枰Ɵ\000\000昁晦晦晦\001\000\002\000䶀\x2b4f\000丸\x2b4f\000买\x2b4f\000濨Ɵ\000\000\000\000\000\000灠Ɵ\000\000\000\000\000\000灠Ɵ\000\000晀Ɵ\000\000昀晦晦晦ဠ\237\000\000疰\x2b4f\000\000\000\000\000\000\000\000\000\001\000晦晦",
'\000' <repeats 20 times>, "椰Ɵ\000\000灠Ɵ\000\000脈Ɵ\000\000质Ɵ\000\000\000\000晦晦"...,
Handle = 27226216,
Value = <error reading variable: Cannot access memory at address 0x1040c748f84593>,
State = 34288168
}, {
Name = "",
Handle = 521257504,
Value = Python Exception <class 'libreoffice.util.uno.UnknownType'> :
,
State = 29872304
}, {
Name = "",
Handle = 521257536,
Value = <error reading variable: Cannot access memory at address 0xafb3615c10a87e08>,
State = 521257792
}, {
Name = "",
Handle = 521258052,
Value = Python Exception <type 'exceptions.AssertionError'> :
,
State = 27226216
}, {
Name = <error reading variable: Cannot access memory at address 0xffffffff02576d05>,
Handle = 27529440,
Value = <error reading variable: Cannot access memory at address 0xafb3615c10a87e08>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = "䣀잉ꇨ{䣿\xd889襈\x3248\xffff䢐䖋擨㍈┄(\000մ揨O䣿쒃存썝䡕䡓䡘綉䢸疉䢰喉䢨䶉撠譈┄(\000襈쀱荈끽琀䠇綃
ή赈伍õ먀f\000赈㌵ô䠀㶍\000\xd7e8K䣿䖋䢰\213蕈瓀䠨䖋䢰\213譈䠀삃䠐\213譈끕譈䠒힉탿譈끅읈\000\000䠀綃¨萏Ĩ\000譈롅譈ᡀ襈읈큅\000\000譈譈၀譈灀譈譈၊譈ꡕ赈큵襈ᅬ䣐䖋䣐삅ή赈댍ô먀u\000赈霵ó䠀㶍\000㯨K䣿䖋䣠䂋䠈䂋䡸喋䣐䶋䣠禋䠈䶋䢠疋ᄚ䣐䖋䢰\213蕈痀䡵喋䣐䖍䣀횉襈\x378\000赈쁍譈ꁕ譈꡵譈襈븸\000襈\xd845赈쁅襈娠\xffff譈譈"...,
Handle = 27428712,
Value = Python Exception <type 'exceptions.AssertionError'> :
,
State = 39283969
}, {
Name =
"潐\214\000\000\000\000\000\000\000\000晦晦餣香香ޙ1\000\000\000ꎀ쾭\x2b4f\000\001\000\000\000\000\000\000\000餥香香香Ú\000\000ༀq\000\000\000\001\000-\000com.sun.star.container.XNameAccess::hasByName\000晦į1\000\000\000漰ȅ\000\000Ἰ
\000\000玀\214\000\000麪\xffff\xffffY\000\000܀!\000\000\000銀\215\000\000饃香香香¼\000\000ༀa\000\000\000\004\000\001\000\003\000\000\000\x1aa0\211\000\000麰\214\000\000\000\000\000\000\000\000\000\000\001\000\001\000\001\000\000\000麰\214\000\000\000\000\000\000饇香香ޙ1\000\000\000ꄐ\237\000\000ᮨ\211\000\000賀\215\000\000"...,
Handle = 27226048,
Value = Python Exception <type 'exceptions.AssertionError'> :
,
State = com::sun::star::beans::PropertyState_DEFAULT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = 16
}, {
Name = "",
Handle = 521258016,
Value = <error reading variable: Cannot access memory at address 0xf0ff88308408c07>,
State = 521258368
}, {
Name =
"젰ἑ⭐\000\000\000\000\000죸ἑ⭐\000웰ἑ⭐\000\x2fda\x2b4f\000읨ἑ⭐\000\000\000\000\000섰NJ\000\000\000\000\000\000\000\000\000\000\214\000\000\000\000\003\000ȓ\000\000쿇\x2b4fĀ\001\000\000\000\000\000\000\000ᇲ퀲\x2b4f\000\001\000\000\000ሼ쿊\x2b4f\000\001\000\001\000앸ἑ⭐\000쑠ἑ⭐\000\214\000\000섰NJ\000\000瀰Ɵ\000\000쑠ἑ⭐\000쑐ἑ⭐\000쑐ἑ⭐\000쑐ἑ⭐\000앰ἑ⭐\000醰ơ\000\000얠ἑ⭐\000龕\x2b4f\000얠ἑ\000\000醰ơ\000\000瀰Ɵ\000\000\003\000\003\000엀ἑ⭐\000\003\000\000\000였ἑ⭐\000ꏅ\x2b4f\000\b\000\000\000훠ɗ\000\000연ἑ⭐\000灏\x2b4f\000\000\000\003\000섰NJ\000\000훠ɗ\000\000縀Ⴈ慜꾳옠ἑ⭐\000"...,
Handle = 9234752,
Value = <error reading variable: Cannot access memory at address 0x49>,
State = 521257984
}, {
Name =
"醰ơ\000\000얠ἑ⭐\000龕\x2b4f\000얠ἑ\000\000醰ơ\000\000瀰Ɵ\000\000\003\000\003\000엀ἑ⭐\000\003\000\000\000였ἑ⭐\000ꏅ\x2b4f\000\b\000\000\000훠ɗ\000\000연ἑ⭐\000灏\x2b4f\000\000\000\003\000섰NJ\000\000훠ɗ\000\000縀Ⴈ慜꾳옠ἑ⭐\000縀Ⴈ慜꾳\xd91c\x2b4f\000섰NJ\000\000웰ἑ⭐\000\xdcd2\x2b4f\000\000\000\000\000읨ἑ⭐\000왰ἑ⭐\000읨ἑ⭐\000\000\000\000\000섰NJ\000\000훠ɗ\000\000ȓ\000\000욠ἑ⭐\000욐ἑ\003\000우ἑ⭐\000웠ἑ⭐\000\000\000\003\000䭠\x2b4f\000웠ἑ⭐\000ȓ\000\000醰ơ\000\000\xd91c\x2b4f\000웰ἑ⭐\000㋒\x2b4f\000類ȳ\000\000縀Ⴈ慜꾳섰NJ\000\000\xd91c\x2b4f\000섰NJ\000\000"...,
Handle = 0,
Value = Python Exception <class 'libreoffice.util.uno.UnknownType'> :
,
State = 521258416
}, {
Name = "",
Handle = 1,
Value = <error reading variable: Cannot access memory at address 0x841f0f2e6e>,
State = 36960720
}, {
Name = "",
Handle = 521258048,
Value = <error reading variable: Cannot access memory at address 0xafb3615c10a87e08>,
State = 521258512
}, {
Name = "",
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0xb>,
State = 521258512
}, {
Name = "",
Handle = 521259232,
Value = empty uno::Any,
State = 521258736
}, {
Name =
"⠥\000琀颲�腈僄\002嬀屁썝䡕荈⃬襈襈譈荈\x18c0襈ᦤ\000赈Ő譈荈ダ襈䣖잉돨\031蠀e譈赈ᡐ譈襈䣆힉헨\031耀ス琀䠌䖋䣨잉︐䣿䖋䣨삃䠰잉\x9fe8\020退쏉䡕䡓䠨綉䣘疉擐譈┄(\000襈쀱譈큝譈큅荈\x18c0襈酂\xfffe襈赈譈\xd845襈䣚캉襈ᄼ\000譈\xd845譈䡤ᐳ⠥\000琀韊�荈⣄嵛嗃襈句腈壬\002䠀붉ﶨ\xffff襈ꂵ�擿譈┄(\000襈쀱譈ꢅ�䣿삃䠈잉蟨ﶖ蓿痀䠗薋ﶠ\xffff荈\x8c0襈陰�삄潴赈낅�뫿Ȧ\000赈鄵Ζ䠀잉嗨︌䣿薍ﶰ\xffffι\000䠀잉䷨ﶓ䣿솉譈ꢅ�䣿ᖍ隫"...,
Handle = 521258856,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = "\002",
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x666666660000000a>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name =
"\204\000\000襈䣰䠏眄贤睈蒍\000䠀䢘︐\xffffས䐟\000譈ၐ\xfffe䣿셈የ荈˸蜏ƞ\000䢍赼\204ö\000顈荈˨\xdbe9�䣿ﶁϿ\000蜏Ƌ\000赁ň赃\004쾉赈썔롘\001\000팅䇠譂莴\x858\000삅ཁ쒔霏䇁찈萏È\000ᗫ遦襁䋸뒋境\b蔀\xff6\xdb85\000茀LJテ瘃䳥残䥘喋䠈킉荈㭈⑄༈랃\003у༁ƅ\004䠀\xdf89맨\xffe7䣿ﶁϿ\000譄␄蘏ﱨ\xffff荈⑼【譄⑄༘垆䣿粃․䐔䒋⠤蘏ﱆ\xffff荈⑼ਰ譄⑄ཀ㖆䣿粃㠤䐄䒋䐤蘏ﰤ\xffff荈⑼͈롁~\000ང䑂値\xde9\xfff䐟\000荈Ⴢ쀁萏̉\000譌ᡢ㥌\xfe2誅\001褀䣁슃Đ⇑䋎뒉境\b"...,
Handle = 1,
Value = <error reading variable: Cannot access memory at address 0x894855c3c9910007>,
State = 521258080
}, {
Name = "\002",
Handle = 30064944,
Value = Python Exception <class 'libreoffice.util.uno.UnknownType'> :
,
State = 521258064
}, {
Name =
"챺\x2b4f\000죠ἑ⭐\000젰ἑ⭐\000\000\000\000\000죸ἑ⭐\000웰ἑ⭐\000\x2fda\x2b4f\000읨ἑ⭐\000\000\000\000\000섰NJ\000\000\000\000\000\000\000\000\000\000\214\000\000\000\000\003\000ȓ\000\000쿇\x2b4fĀ\001\000\000\000\000\000\000\000ᇲ퀲\x2b4f\000\001\000\000\000ሼ쿊\x2b4f\000\001\000\001\000앸ἑ⭐\000쑠ἑ⭐\000\214\000\000섰NJ\000\000瀰Ɵ\000\000쑠ἑ⭐\000쑐ἑ⭐\000쑐ἑ⭐\000쑐ἑ⭐\000앰ἑ⭐\000醰ơ\000\000얠ἑ⭐\000龕\x2b4f\000얠ἑ\000\000醰ơ\000\000瀰Ɵ\000\000\003\000\003\000엀ἑ⭐\000\003\000\000\000였ἑ⭐\000ꏅ\x2b4f\000\b\000\000\000훠ɗ\000\000연ἑ⭐\000灏\x2b4f\000\000\000\003\000섰NJ\000\000훠ɗ\000\000"...,
Handle = 521258352,
Value = uno::Any {
<com::sun::star::uno::XInterface> = {
_vptr.XInterface = 0x2b501f11c600
}, <No data fields>},
State = 521258400
}, {
Name = "",
Handle = 27226160,
Value = <error reading variable: Cannot access memory at address 0x30000000b>,
State = 521258496
}, {
Name =
"䣠䔻璸䠌䖋䣠잉⃨ﹳ䣿䖋䣐䶋擨㍈┌(\000մ\xd8e8ﹱ䣿쒃孈썝䡕襈襈譈ႋ譈\213숹ٽ譈ӫ譈썝喐襈䇥協譈툅K䠀삅㑵炿\000瑋\xfffe襈䣃\xdf89峨「䣿ᶉ⪱!᛫襉䣄\xdf89ﳨ\xfe6d䳿襈琱\xfffe宐屁썝䡕䡓䠈\x58b⪃!蕈瓀䠧ᶋ⩷!蕈瓛䠐\xdf89「䣿\xdf89뫨\xfe6d䣿ׇ⩗!\000\000䢐쒃嬈썝喐襈䣥綉䣸\x58b⨿!썝䡕荈წ䡤ಋ⠥\000䠀䶉ㇸ勉տ\000荈Ⴤ譈䡤㐳⠥\000琀烏\xfffe쏉䡕呁䡓䠠綉䣘疉䣐䖋䣐잉ⓨ\005䠀䖉䣨䖋䣨䂋䠈잉勨ﺡ䣿䔻\xfd8삕삄ὴ赈堍V먀R\000赈鰵U䠀㶍嗿\000䃨"...,
Handle = 8,
Value = Python Exception <type 'exceptions.AttributeError'> 'gdb.Value' object has no
attribute 'partition':
,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = "",
Handle = 39311072,
Value = <error reading variable: Cannot access memory at address 0xafb3615c10a87e08>,
State = 3895515420
}, {
Name = "",
Handle = 521258736,
Value = Python Exception <type 'exceptions.AssertionError'> :
,
State = 521258608
}, {
Name =
"\b\000\000\000\066\000\000\000훠ɗ\000\000へɁ\000\000쿇\x2b4f\000\000\000\000\000휀ἑ⭐\000ਤ퀲\x2b4f\000\066\000\000\000\xd78탎\x2b4f\000\001\000\000\000욒쿽\x2b4f\000\000\000\000\000\000\000\000\000\001\000\000\000쟨ἑ⭐\000쟨ἑ⭐\000璐ɂ\000\000\001\000⭐\000\001\000\000\000쿇\x2b4f\000\001\000\000\000\231\000\000\000섰NJ",
'\000' <repeats 12 times>,
"\x2b4f\000\000\000\000\000\000\000\000\000\xcdf퀲\x2b4f\000\000\000\000\000\000\000\000\000\001\000⭐",
'\000' <repeats 17 times>,
"섰NJ\000\000죀ἑ⭐\000䫝쿌\x2b4f\000섰NJ\000\000섰NJ\000\000죠ἑ⭐\000䒱\x2b4f\000痐ɗ\000\000준ἑ⭐\000\000\000\000\000\000\000\000\000\001\000⭐\000섰NJ\000\000"...,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x49>,
State = 521258656
}, {
Name = <error reading variable: Cannot access memory at address 0x31f11c694>,
Handle = 521258672,
Value = empty uno::Any,
State = 521258720
}, {
Name =
"G\x2b4f\000\xd91c\x2b4f\000\002\000晦晦먠Ƶ\000\000瀰Ɵ\000\000醰ơ\000\000鱀ɗ\000\000\xf98饧香ޙ¡\000\000\000\001\000E\000com.sun.star.sdbc.XDatabaseMetaData::storesLowerCaseQuotedIdentifiers\000晦Ǝ\201\000\000\000\001\000.\000\062\061\064\060\065\065\060;gcc3[0];fe7de20b33e41278dabfa0935fd472\000晦饻香香香香香香ྙ\221\000\000\000\001\000;\000com.sun.star.sdb"...,
Handle = 27365808,
Value = <error reading variable: Cannot access memory at address 0x8948ffffff60b591>,
State = 36960720
}, {
Name = <error reading variable: Cannot access memory at address 0xafb3615c10a87e04>,
Handle = 30064944,
Value = <error reading variable: Cannot access memory at address 0x8948ffffff60b591>,
State = 521259328
}, {
Name =
"삅锏裀�胿�ÿ萏\212\000뻨﹚䣿슉赈\xfffe䣿횉襈㻊\xfffe赈傕\xfffe䣿趍ﻰ\xffff赈悅\xffff䣿캉襈랂�赈悕\xffff䣿薋\xfdd0\xffff襈䣖잉쇨ﶸ䣿薍⦆\xffff襈뢒�赈\xfffe䣿잉釨ﶺ䣿薍﹐\xffff¾\000䠀잉\xde8ﶲѐ\000赈ꁅ荈\x18c0襈\x1aac\000萁࿀袄\000䠀䖍뺠\000\000襈ᛞ\000襈䣂趍︐\xffff赈悅\xffff䣿캉襈뛪�赈悕\xffff䣿薋\xfdd0\xffff襈䣖잉⧨ﶸ䣿薍⦆\xffff襈럺�赈ႅ\xfffe䣿잉韨ﶹ䣿쎉赈ꁅ¾\000䠀잉矨\026먀\000\000襈䣞잉엨ﶰ䣿薋\xfdc8\xffff荈\x18c0襈\xfee\000萁࿀辄\003䠀薋\xfdd8\xffff荈ダ襈륂�䂋茈᧸锏蓀瓀䰫\x58d\xab48\003赈弍Υ"...,
Handle = 521259200,
Value = empty uno::Any,
State = 3921655989
}, {
Name = unintialized rtl::OUString,
Handle = 9234560,
Value = <error reading variable: Cannot access memory at address 0x190008>,
State = 9234752
}, {
Name = <error reading variable: Cannot access memory at address 0x23d>,
Handle = -804982621,
Value = empty uno::Any,
State = 39311072
}, {
Name = "",
Handle = -808980384,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = 54
}, {
Name = "",
Handle = 1,
Value = Python Exception <type 'exceptions.AssertionError'> :
,
State = com::sun::star::beans::PropertyState_DEFAULT_VALUE
}, {
Name =
"쟨ἑ⭐\000璐ɂ\000\000\001\000⭐\000\001\000\000\000쿇\x2b4f\000\001\000\000\000\231\000\000\000섰NJ",
'\000' <repeats 12 times>,
"\x2b4f\000\000\000\000\000\000\000\000\000\xcdf퀲\x2b4f\000\000\000\000\000\000\000\000\000\001\000⭐",
'\000' <repeats 17 times>,
"섰NJ\000\000죀ἑ⭐\000䫝쿌\x2b4f\000섰NJ\000\000섰NJ\000\000죠ἑ⭐\000䒱\x2b4f\000痐ɗ\000\000준ἑ⭐\000\000\000\000\000\000\000\000\000\001\000⭐\000섰NJ\000\000세NJ\000\000세NJ\000\000\b\000\000\000縀Ⴈ慜꾳\001\000\000\000\001\000\000\000쿇\x2b4f\000\000\000\000\000쫀ἑ⭐\000خ\x2b4f\000\000\000\000\000戀ȳ\000\000\006\000\000\000\000\000\000Ā\000\000\000\000\000\000\x2b4f\000"...,
Handle = 521258984,
Value = <error reading variable: Cannot access memory at address 0x99999999999999a1>,
State = 3485986912
}, {
Name = <error reading variable: Cannot access memory at address 0x5>,
Handle = 153,
Value = Python Exception <type 'exceptions.AssertionError'> :
,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = Python Exception <type 'exceptions.AssertionError'> :
,
State = com::sun::star::beans::PropertyState_DEFAULT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = 521259200
}, {
Name =
"襈襈\xdadb즐嗃襈䣥䠐綉䣸綃øή赈ญΑ먀ә\000赈㈵Ͳ䠀㶍獯\003曨ﳖ䣿䖋䣸\213蕈瓀䠏䖋䣸\213襈[\xffff譈赈ͱ䠀ႉ즐嗃襈䣥褐ﱽ綃üݹ¸\000謊ﱅ잉跨�짿嗃襈䣥䠠綉觨荈甀䠟ඍ郉\003\004䠀㖍熭\003赈Ͳ헡綃äᅿ譈襈W\xffff뗩\000䠀䖋䣨\213蕈瓀䠏䖋䣨\213襈ﺟ\xffff䖋觤ﴚ\xffff襈䣂䖋䣨ႉ譈譈䠀삅\x2b75赌錅Ͳ䠀ඍ爔\003赈騕Ͳ䠀㖍牬\003ƿ\000렀\000\000ﵞ䣿䖋䣨\213䃇\004\000䠀䖋䣨\213荈\x8c0襈䖋䣤䢘ᒍ䠀䖋뻸\000\000襈펍᛫荈\x874襈\xdedd襈"...,
Handle = 30064944,
Value = <error reading variable: Cannot access memory at address 0x49>,
State = 39286224
}, {
Name = "",
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = 30064952
}, {
Name = "",
Handle = 8,
Value = <error reading variable: Cannot access memory at address 0xafb3615c10a87e08>,
State = 3485986912
}, {
Name = unintialized rtl::OUString,
Handle = 521259712,
Value = Python Exception <type 'exceptions.AssertionError'> :
,
State = 6
}, {
Name = <error reading variable: Cannot access memory at address 0x100000000000004>,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x2b4f00000008>,
State = 37826681
}, {
Name = "",
Handle = 37826681,
Value = <error reading variable: Cannot access memory at address 0x99999999999999a1>,
State = 3505931136
}, {
Name = <error reading variable: Cannot access memory at address 0x14>,
Handle = 37826680,
Value = <error reading variable: Cannot access memory at address 0x2b4fd0f83e3008>,
State = 521259703
}, {
Name = "",
Handle = 521259552,
Value = <error reading variable: Cannot access memory at address 0x8948f0758948f885>,
State = 521259584
}, {
Name = "",
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x9>,
State = 521259664
}, {
Name = "",
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0xafb3615c10a87e08>,
State = 3485986912
}, {
Name = unintialized rtl::OUString,
Handle = 521259776,
Value = <error reading variable: Cannot access memory at address 0x89481aeb21740008>,
State = 36960656
}, {
Name = <error reading variable: Cannot access memory at address 0xafb3615c10a87e04>,
Handle = 1,
Value = <error reading variable: Cannot access memory at address 0x9>,
State = 521259824
}, {
Name = <error reading variable: Cannot access memory at address 0x2b01d23c4faf>,
Handle = 35053984,
Value = empty uno::Any,
State = 36960656
}, {
Name = "",
Handle = 35076496,
Value = <error reading variable: Cannot access memory at address 0xafb3615c10a87e08>,
State = 521259952
}, {
Name =
"襈줎\xffff삄깴譈\xd845똏㡀똏䣘䖋䳘悍䠰䖋䣘삃䠠잉揨\023褀䳚襈䡚\000秩\xffff䣿䖋䣘墋䠨\xdb85ၴ襈셒\xffff襈ꁨ\xffff譈\xd845읈⡀\000\000譈\xd845똏㡀萁瓀㕬\000譈\xd855赈襈䣖잉駨\023䠀䖋䣘삃䠠잉\022䠀슉赈襈䣆힉跨A䠀䖍䣠잉\017ﺊ\xffff襈䣃䖍䣠잉\xdde8\017䠀\xd889ë襈鳖\xffff譈\xd845譈䠀삃䠘\213譈\xd855襈ᅲꅚ\xffff襈ꈢ\xffff襈䣘잉럨ᄁ郿譈䡤г⠥\000琀ꀒ\xffff荈\x20c4䅛嵜䣃\xfdee\xffff䡕荈წ綉觼綃Ǽ㉵綁\xfff8ÿ甀䠩㶍㽵)៨ᄀ䣿ᖍ㹰)赈戵⤿䠀\x58b㨊)襈鼚\xffff즐嗃襈뻥\xffff\000ƿ\000ᄂ"...,
Handle = 0,
Value = Python Exception <class 'libreoffice.util.uno.UnknownType'> :
,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 521260000,
Value = Python Exception <type 'exceptions.AssertionError'> :
,
State = 35051808
}, {
Name =
"\xd900Ȗ\000\000㖀ƶ\000\000㦐ȗ\000\000殰ƶ\000\000昀晦晦晦î\000\000܀̑\000\000\000Ȗ\000\000\a\000晦晦\214\000\000\020晦晦晦\000\000晦晦쳸Ȗ\000\000ꎠȖ\000\000\024\000晦晦\214\000\000\020晦晦晦\000\000晦晦캐Ȗ\000\000\x2450ɀ\000\000\026\000晦晦跰\215\000\000\003晦晦晦\001\000晦晦췀Ȗ\000\000퀀Ȗ\000\000C\000晦晦\214\000\000\002晦晦晦\000\000晦晦칀Ȗ\000\000\xda60Ȗ\000\000D\000晦晦跰\215\000\000\003晦晦晦\001\000晦晦췰Ȗ\000\000꾀Ȗ\000\000E\000晦晦跰\215\000\000\003晦晦晦\001\000晦晦춨Ȗ\000\000㍐ɀ\000\000N\000晦晦倐\237\000\000\002晦晦晦\000\000晦晦츸Ȗ\000\000퐀Ȗ\000\000"...,
Handle = 521260048,
Value = Python Exception <type 'exceptions.AssertionError'> :
,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = "\031\030\000\000铵툼\x2b4f\000Ȗ", '\000' <repeats 24 times>,
"\004\000\002\000\000\000\002\000\000\000\002\000\000\000\xd920Ȗ\000\000\000\000\000\000駅香香香\220\000\000ༀA\000\000\000\001\000\016\000ControlDefault\000晦駫香香香香香香ྙ!\000\000\000\001\000\004\000Name\000晦曣̜1\000\000\000Ⴠȭ\000\000\xdfa0Ȗ\000\000香香香香香香香香0\000\000\000@\000\000\000\001\000\017\000IsRowCountFinal\000晦香香香扦〱)൦!\000\000\000\001\000\005\000Align\000晦Ƒ1\000\000\000ᤀ\x2b4f\000\001\000\001\000Ȗ\000\000"...,
Handle = 0,
Value = Python Exception <type 'exceptions.AssertionError'> :
,
State = 521262848
}, {
Name = <error reading variable: Cannot access memory at address 0x673455ac3884bb72>,
Handle = 0,
Value = Python Exception <type 'exceptions.AssertionError'> :
,
State = 2697247598
}, {
Name = <error reading variable: Cannot access memory at address 0x31abf567385ebb72>,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x7>,
State = 4294967295
}, {
Name = <error reading variable: Cannot access memory at address 0x3>,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = "䮀텳\x2b4f\000䮀텳\x2b4f\000䰼텳\x2b4f\000¼\000\000\000䬀텳\x2b4f", '\000' <repeats 173
times>, "\001\000\001\000\001\000\001\000"...,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = 3496259360
}, {
Name = "",
Handle = 0,
Value = Python Exception <class 'gdb.error'> Attempt to dereference a generic pointer.:
,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = 521262848
}, {
Name = <error reading variable: Cannot access memory at address 0x5>,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0xafb3615c10a87e08>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = -323618368,
Value = Python Exception <class 'libreoffice.util.uno.UnknownType'> :
,
State = 521263584
}, {
Name = <error reading variable: Cannot access memory at address 0xffffffffffffffe4>,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DEFAULT_VALUE
}, {
Name = "",
Handle = 1,
Value = empty uno::Any,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = 257
}, {
Name = unintialized rtl::OUString,
Handle = -495632668,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = 3486444481
}, {
Name = "\031\030\000\000铵툼\x2b4f\000Ȗ", '\000' <repeats 24 times>,
"\004\000\002\000\000\000\002\000\000\000\002\000\000\000\xd920Ȗ\000\000\000\000\000\000駅香香香\220\000\000ༀA\000\000\000\001\000\016\000ControlDefault\000晦駫香香香香香香ྙ!\000\000\000\001\000\004\000Name\000晦曣̜1\000\000\000Ⴠȭ\000\000\xdfa0Ȗ\000\000香香香香香香香香0\000\000\000@\000\000\000\001\000\017\000IsRowCountFinal\000晦香香香扦〱)൦!\000\000\000\001\000\005\000Align\000晦Ƒ1\000\000\000ᤀ\x2b4f\000\001\000\001\000Ȗ\000\000"...,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = 4096
}, {
Name = <error reading variable: Cannot access memory at address 0x1004>,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
}, {
Name = unintialized rtl::OUString,
Handle = 0,
Value = <error reading variable: Cannot access memory at address 0x8>,
State = 521269992
}, {
Name = "",
Handle = 521270040,
Value = <error reading variable: Cannot access memory at address 0x4ba51>,
State = 521266488
}, {
Name = "",
Handle = 521266536,
Value = <error reading variable: Cannot access memory at address 0xaba51>,
State = 521266632
}, {
Name =
"\000뭉\xab9c\x2b4f\000iã멉\016耀\000\000뭉\xab9c\x2b4f\000iã멉\017耀\000\000뭉\xab9c\x2b4f\000iã멉\020\000\000\000뭉\xab9c\x2b4f\000iã멉\021\000\000\000뭉\xab9c\x2b4f\000iã멉\022\000\000\000뭉\xab9c\x2b4f\000iã멉\023\000\000\000뭉\xab9c\x2b4f\000iã멉\024\000\000\000뭉\xab9c\x2b4f\000iã멉\025\000\000\000뭉\xab9c\x2b4f\000iã멉\026\000\000\000뭉\xab9c\x2b4f\000iã멉\027\000\000\000뭉\xab9c\x2b4f\000iã멉\030\000\000\000뭉\xab9c\x2b4f\000iã멉\031\000\000\000뭉\xab9c\x2b4f\000iã멉\032\000\000\000뭉\xab9c\x2b4f\000iã멉\033\000\000\000뭉\xab9c\x2b4f\000iã멉\034耀\000\000뭉\xab9c\x2b4f\000iã멉\035耀\000\000뭉\xab9c\x2b4f\000iã"...,
Handle = 521266680,
Value = <error reading variable: Cannot access memory at address 0x10ba51>,
State = 521266776
}, {
Name = "",
Handle = 521266824,
Value = <error reading variable: Cannot access memory at address 0x16ba51>,
State = 521266920
}, {
Name = "",
Handle = 521266968,
Value = <error reading variable: Cannot access memory at address 0x8000001cba51>,
State = 521267064
}, {
Name = "\000뭉\xab9c\x2b4f\000iã멉
耀\000\000뭉\xab9c\x2b4f\000iã멉!耀\000\000뭉\xab9c\x2b4f\000iã멉\"耀\000\000뭉\xab9c\x2b4f\000iã멉#耀\000\000뭉\xab9c\x2b4f\000iã멉$\000\000\000뭉\xab9c\x2b4f\000iã멉%\000\000\000뭉\xab9c\x2b4f\000iã멉&\000\000\000뭉\xab9c\x2b4f\000iã멉'\000\000\000뭉\xab9c\x2b4f\000iã멉(\000\000\000뭉\xab9c\x2b4f\000iã멉)\000\000\000뭉\xab9c\x2b4f\000iã멉*\000\000\000뭉\xab9c\x2b4f\000iã멉+\000\000\000뭉\xab9c\x2b4f\000iã멉,\000\000\000뭉\xab9c\x2b4f\000iã멉-\000\000\000뭉\xab9c\x2b4f\000iã멉.\000\000\000뭉\xab9c\x2b4f\000iã멉/\000\000\000뭉\xab9c\x2b4f\000iã"...,
Handle = 521267112,
Value = <error reading variable: Cannot access memory at address 0x80000022ba51>,
State = 521267208
}, {
Name = "",
Handle = 521267256,
Value = <error reading variable: Cannot access memory at address 0x28ba51>,
State = 521267352
}, {
Name = "",
Handle = 521267400,
Value = <error reading variable: Cannot access memory at address 0x2eba51>,
State = 521267496
}, {
Name = "",
Handle = 521267544,
Value = <error reading variable: Cannot access memory at address 0x34ba51>,
State = 521267640
}, {
Name = "",
Handle = 521267688,
Value = <error reading variable: Cannot access memory at address 0x3aba51>,
State = 521267784
}, {
Name = "",
Handle = 521267832,
Value = <error reading variable: Cannot access memory at address 0x80000040ba51>,
State = 521267928
}, {
Name =
"\000뭉\xab9c\x2b4f\000iã멉D\000\000\000뭉\xab9c\x2b4f\000iã멉E\000\000\000뭉\xab9c\x2b4f\000iã멉F\000\000\000뭉\xab9c\x2b4f\000iã멉G\000\000\000뭉\xab9c\x2b4f\000iã멉H\000\000\000뭉\xab9c\x2b4f\000iã멉I\000\000\000뭉\xab9c\x2b4f\000iã멉J\000\000\000뭉\xab9c\x2b4f\000iã멉K\000\000\000뭉\xab9c\x2b4f\000iã멉L\000\000\000뭉\xab9c\x2b4f\000iã멉M\000\000\000뭉\xab9c\x2b4f\000iã멉N\000\000\000뭉\xab9c\x2b4f\000iã멉O\000\000\000뭉\xab9c\x2b4f\000iã멉P\000\000\000뭉\xab9c\x2b4f\000iã멉Q\000\000\000뭉\xab9c\x2b4f\000iã멉R\000\000\000뭉\xab9c\x2b4f\000iã멉S\000\000\000뭉\xab9c\x2b4f\000iã"...,
Handle = 521267976,
Value = <error reading variable: Cannot access memory at address 0x46ba51>,
State = 521268072
}, {
Name = "",
Handle = 521268120,
Value = <error reading variable: Cannot access memory at address 0x4cba51>,
State = 521268216
}, {
Name = "",
Handle = 521268264,
Value = <error reading variable: Cannot access memory at address 0x52ba51>,
State = 521268360
}, {
Name = "",
Handle = 521268408,
Value = <error reading variable: Cannot access memory at address 0x58ba51>,
State = 521268504
}, {
Name = "",
Handle = 521268552,
Value = <error reading variable: Cannot access memory at address 0x5eba51>,
State = 521268648
}, {
Name = "",
Handle = 521268696,
Value = <error reading variable: Cannot access memory at address 0x64ba51>,
State = 521268792
}, {
Name = "",
Handle = 521268840,
Value = <error reading variable: Cannot access memory at address 0x6aba51>,
State = 521268936
}, {
Name = "",
Handle = 521268984,
Value = <error reading variable: Cannot access memory at address 0x70ba51>,
State = 521269080
}, {
Name = "",
Handle = 521269128,
Value = <error reading variable: Cannot access memory at address 0x76ba51>,
State = 521269224
}, {
Name =
"\000뭉\xab9c\x2b4f\000iã멉z耀\000\000뭉\xab9c\x2b4f\000iã멉{耀\000\000뭉\xab9c\x2b4f\000iã멉|耀\000\000뭉\xab9c\x2b4f\000iã멉}耀\000\000뭉\xab9c\x2b4f\000iã멉~耀\000\000뭉\xab9c\x2b4f\000iã멉\177耀\000\000뭉\xab9c\x2b4f\000iã멉\200耀\000\000뭉\xab9c\x2b4f\000iã멉\201耀\000\000뭉\xab9c\x2b4f\000iã멉\202耀\000\000뭉\xab9c\x2b4f\000iã멉\203耀\000\000뭉\xab9c\x2b4f\000iã멉\204耀\000\000뭉\xab9c\x2b4f\000iã멉\205耀\000\000뭉\xab9c\x2b4f\000iã멉\206耀\000\000뭉\xab9c\x2b4f\000iã멉\207耀\000\000뭉\xab9c\x2b4f\000iã멉\210耀\000\000뭉\xab9c\x2b4f\000iã멉\211耀\000\000뭉\xab9c\x2b4f\000iã"...,
Handle = 521269272,
Value = <error reading variable: Cannot access memory at address 0x8000007cba51>,
State = 521269368
}, {
Name =
"\000뭉\xab9c\x2b4f\000iã멉\200耀\000\000뭉\xab9c\x2b4f\000iã멉\201耀\000\000뭉\xab9c\x2b4f\000iã멉\202耀\000\000뭉\xab9c\x2b4f\000iã멉\203耀\000\000뭉\xab9c\x2b4f\000iã멉\204耀\000\000뭉\xab9c\x2b4f\000iã멉\205耀\000\000뭉\xab9c\x2b4f\000iã멉\206耀\000\000뭉\xab9c\x2b4f\000iã멉\207耀\000\000뭉\xab9c\x2b4f\000iã멉\210耀\000\000뭉\xab9c\x2b4f\000iã멉\211耀\000\000뭉\xab9c\x2b4f\000iã멉\212\000\000\000뭉\xab9c\x2b4f\000iã멉\213\000\000\000뭉\xab9c\x2b4f\000iã멉\214\000\000\000뭉\xab9c\x2b4f\000iã멉\215\000\000\000뭉\xab9c\x2b4f\000iã멉\216\000\000\000뭉\xab9c\x2b4f\000iã멉\217\000\000\000뭉\xab9c\x2b4f\000iã"...,
Handle = 521269416,
Value = <error reading variable: Cannot access memory at address 0x80000082ba51>,
State = 521269512
}, {
Name =
"\000뭉\xab9c\x2b4f\000iã멉\206耀\000\000뭉\xab9c\x2b4f\000iã멉\207耀\000\000뭉\xab9c\x2b4f\000iã멉\210耀\000\000뭉\xab9c\x2b4f\000iã멉\211耀\000\000뭉\xab9c\x2b4f\000iã멉\212\000\000\000뭉\xab9c\x2b4f\000iã멉\213\000\000\000뭉\xab9c\x2b4f\000iã멉\214\000\000\000뭉\xab9c\x2b4f\000iã멉\215\000\000\000뭉\xab9c\x2b4f\000iã멉\216\000\000\000뭉\xab9c\x2b4f\000iã멉\217\000\000\000뭉\xab9c\x2b4f\000iã멉\220\000\000\000뭉\xab9c\x2b4f\000iã멉\221\000\000\000뭉\xab9c\x2b4f\000iã멉\222\000\000\000뭉\xab9c\x2b4f\000iã멉\223\000\000\000뭉\xab9c\x2b4f\000iã멉\224\000\000\000뭉\xab9c\x2b4f\000iã멉\225\000\000\000뭉\xab9c\x2b4f\000iã"...,
Handle = 521269560,
Value = <error reading variable: Cannot access memory at address 0x80000088ba51>,
State = 521269656
}, {
Name = "",
Handle = 521269704,
Value = Python Exception <class 'libreoffice.util.uno.UnknownType'> :
,
State = 521269800
}, {
Name = "",
Handle = 521269848,
Value = Python Exception <class 'libreoffice.util.uno.UnknownType'> :
,
State = 521269944
}, {
Name =
"\000뭉\xab9c\x2b4f\000iã멉\000耀\000\000뭉\xab9c\x2b4f\000iã멉\001\000\000\000뭉\xab9c\x2b4f\000iã멉\002\000\000\000뭉\xab9c\x2b4f\000iã",
'\000' <repeats 156 times>...,
Handle = 521266392,
Value = <error reading variable: Cannot access memory at address 0x80000098ba51>,
State = 244297
}, {
Name = <error reading variable: Cannot access memory at address 0xe831ab9cbb490004>,
Handle = 11087,
Value = <error reading variable: Cannot access memory at address 0x4ba51>,
State = 375369
}, {
Name = <error reading variable: Cannot access memory at address 0xe831ab9cbb490004>,
Handle = 11087,
Value = <error reading variable: Cannot access memory at address 0x80000006ba51>,
State = 506441
}, {
Name = <error reading variable: Cannot access memory at address 0xe831ab9cbb490004>,
Handle = 11087,
Value = <error reading variable: Cannot access memory at address 0x8ba51>,
State = 637513
}, {
Name = <error reading variable: Cannot access memory at address 0xe831ab9cbb490004>,
Handle = 11087,
Value = <error reading variable: Cannot access memory at address 0xaba51>,
State = 768585
}, {
Name = <error reading variable: Cannot access memory at address 0xe831ab9cbb490004>,
Handle = 11087,
Value = <error reading variable: Cannot access memory at address 0x8000000cba51>,
State = 899657
}, {
Name = <error reading variable: Cannot access memory at address 0xe831ab9cbb490004>,
Handle = 11087,
Value = <error reading variable: Cannot access memory at address 0x8000000eba51>,
State = 1030729
}...}
pIter = <optimized out>
pEnd = <optimized out>
aFlushedEvent = {
Source = uno::Reference to (com::sun::star::uno::XInterface *) 0x2b501f11c090
}
aGuard = {
<osl::Guard<osl::Mutex>> = {
pT = 0x2358b30
}, <No data fields>}
__PRETTY_FUNCTION__ = "virtual void connectivity::hsqldb::OHsqlConnection::flush()"
#24 0x00002b4ff40b8a68 in connectivity::hsqldb::ODriverDelegator::flushConnections (this=0x1ca1cf0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/connectivity/source/drivers/hsqldb/HDriver.cxx:624
xCon = uno::Reference to (connectivity::hsqldb::OHsqlConnection *) 0x2358b20
i = {
first = {
m_pImpl =
},
second = {
first = "1",
second = {
first = {
m_pImpl =
},
second = {
m_pImpl =
}
}
}
}
aGuard = {
pT = 0x1ca1d68
}
__PRETTY_FUNCTION__ = "void connectivity::hsqldb::ODriverDelegator::flushConnections()"
#25 0x00002b4ff40da97c in connectivity::hsqldb::OConnectionController::queryTermination
(this=0x20b3200)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/connectivity/source/drivers/hsqldb/HTerminateListener.cxx:43
No locals.
#26 0x00002b4fea4b11ee in framework::Desktop::impl_sendQueryTerminationEvent
(this=this@entry=0x19f6fc0,
lCalledListener=std::__debug::vector of length 0, capacity 0,
bVeto=bVeto@entry=@0x2b501f11c26b: false)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/framework/source/services/desktop.cxx:1604
xListener = uno::Reference to (connectivity::hsqldb::OConnectionController *) 0x20b3228
aTransaction = {
<boost::noncopyable_::noncopyable> = {<No data fields>},
members of framework::TransactionGuard:
m_pManager = 0x19f7068
}
pContainer = 0x1b687e0
aEvent = {
Source = uno::Reference to (framework::Desktop *) 0x19f6fc0
}
aIterator = {
rCont = @0x1b687e0,
bIsList = 1 '\001',
aData = {
pAsSequence = 0x1c7d0b0,
pAsInterface = 0x1c7d0b0
},
nRemain = 2
}
#27 0x00002b4fea4ace85 in framework::Desktop::terminate (this=0x19f6fc0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/framework/source/services/desktop.cxx:225
aTransaction = {
<boost::noncopyable_::noncopyable> = {<No data fields>},
members of framework::TransactionGuard:
m_pManager = 0x19f7068
}
aReadLock = {
m_bCleared = true,
m_solarMutex = @0x8c9d90
}
xPipeTerminator = uno::Reference to (desktop::OfficeIPCThreadController *) 0x1a410e0
xQuickLauncher = empty uno::Reference
xSWThreadManager = empty uno::Reference
xSfxTerminator = uno::Reference to (SfxTerminateListener_Impl *) 0x1a28768
aEvent = {
Source = uno::Reference to (framework::Desktop *) 0x19f6fc0
}
bAskQuickStart = true
lCalledTerminationListener = std::__debug::vector of length 0, capacity 0
bVeto = false
bAllowUI = <optimized out>
bFramesClosed = <optimized out>
bTerminate = <optimized out>
#28 0x00002b4fe830e2f1 in gcc3::callVirtualMethod(void*, unsigned int, void*,
_typelib_TypeDescriptionReference*, bool, unsigned long*, unsigned int, unsigned long*, double*) ()
from /home/master/src/libreoffice/workdirs/libreoffice-5-1/instdir/program/libgcc3_uno.so
No symbol table info available.
#29 0x00002b4fe830d2bb in cpp_call (pThis=pThis@entry=0x213f740, aVtableSlot=...,
pReturnTypeRef=0x8ce940,
nParams=0, pParams=0x0, pUnoReturn=pUnoReturn@entry=0x1cac130, pUnoArgs=0x0,
ppUnoExc=0x2b501f11c768)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:245
pStack = 0x2b501f11c460
pStackStart = 0x2b501f11c460
pGPR = {27226160, 12884901891, 47623118636480, 3, 47623118636544, 47622197978053}
nGPR = 1
pFPR = {3.9525251667299724e-323, 1.9422250176391743e-316, 2.3528946866130511e-310,
2.3528504783636675e-310, 6.3659873728958169e-314, 1.485405597454091e-316,
1.9422250176391743e-316,
-6.537954409800711e-79}
nFPR = 0
pReturnTypeDescr = 0x8ce940
__PRETTY_FUNCTION__ = "void cpp_call(bridges::cpp_uno::shared::UnoInterfaceProxy*,
bridges::cpp_uno::shared::VtableSlot, typelib_TypeDescriptionReference*, sal_Int32,
typelib_MethodParameter*, void*, void**, uno_Any**)"
pCppReturn = 0x1cac130
bSimpleReturn = true
pAdjustedThisPtr = 0x19f7030
pCppArgs = 0x2b501f11c450
pTempIndices = 0x2b501f11c450
ppTempParamTypeDescr = 0x2b501f11c450
nTempIndices = 0
#30 0x00002b4fe830dcd2 in bridges::cpp_uno::shared::unoInterfaceProxyDispatch (pUnoI=0x213f740,
pMemberDescr=0x257d6e0, pReturn=0x1cac130, pArgs=0x0, ppException=0x2b501f11c768)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:443
nMemberPos = 3
aVtableSlot = {
offset = 0,
index = 3
}
pThis = 0x213f740
pTypeDescr = 0x1a191b0
__PRETTY_FUNCTION__ = "void
bridges::cpp_uno::shared::unoInterfaceProxyDispatch(uno_Interface*, const typelib_TypeDescription*,
void*, void**, uno_Any**)"
#31 0x00002b4fe9bc171e in binaryurp::IncomingRequest::execute_throw (this=this@entry=0x233f990,
returnValue=returnValue@entry=0x2b501f11c9e0, outArguments=outArguments@entry=0x2b501f11ca60)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/binaryurp/source/incomingrequest.cxx:241
exc = Python Exception <type 'exceptions.AssertionError'> :
pexc = 0x2b501f11c790
retType = {
_pTypeDescr = 0x8ce940
}
nSize = 8
retBuf = std::__debug::vector of length 8, capacity 8 = {0 '\000', 0 '\000', 0 '\000', 0
'\000',
0 '\000', 0 '\000', 0 '\000', 0 '\000'}
outBufs = empty std::__debug::listPython Exception <type 'exceptions.ValueError'> Cannot
find type std::__debug::list<std::__debug::vector<char, std::allocator<char> >,
std::allocator<std::__debug::vector<char, std::allocator<char> > > >::_Node:
args = std::__debug::vector of length 0, capacity 0
isExc = false
#32 0x00002b4fe9bc062e in binaryurp::IncomingRequest::execute (this=0x233f990)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/binaryurp/source/incomingrequest.cxx:73
resetCc = true
oldCc = {
m_pUnoI = 0x0
}
ret = {
data_ = empty _uno_Any
}
outArgs = std::__debug::vector of length 0, capacity 0
isExc = <optimized out>
#33 0x00002b4fe9be3f36 in binaryurp::(anonymous namespace)::request (pThreadSpecificData=0x233f990)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/binaryurp/source/reader.cxx:85
__PRETTY_FUNCTION__ = "void binaryurp::{anonymous}::request(void*)"
#34 0x00002b4fd23c56ea in cppu_threadpool::JobQueue::enter (this=0x2173990, nDisposeId=35053984,
bReturnWhenNoJob=bReturnWhenNoJob@entry=true)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/threadpool/jobqueue.cxx:115
guard = {
pT = 0x2173990
}
job = {
pThreadSpecificData = 0x233f990,
doRequest = 0x2b4fe9be3ecd <binaryurp::(anonymous namespace)::request(void*)>
}
pReturn = 0x0
#35 0x00002b4fd23c9142 in cppu_threadpool::ORequestThread::run (this=0x216e1a0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/threadpool/thread.cxx:171
No locals.
#36 0x00002b4fd23c9520 in osl::threadFunc (param=0x216e1b0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/osl/thread.hxx:184
pObj = 0x216e1b0
#37 0x00002b4fcfceeccf in osl_thread_start_Impl (pData=0x216d900)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/sal/osl/unx/thread.cxx:240
terminate = false
pImpl = 0x216d900
__PRETTY_FUNCTION__ = "void* osl_thread_start_Impl(void*)"
#38 0x00002b4fd06580a4 in start_thread (arg=0x2b501f11d700) at pthread_create.c:309
__res = <optimized out>
pd = 0x2b501f11d700
now = <optimized out>
unwind_buf = {
cancel_jmp_buf = {{
jmp_buf = {47623118640896, 7436663082866490222, 0, 47621788397664, 0, 47623118640896,
3572598669033388910, 3579224152552160110},
mask_was_saved = 0
}},
priv = {
pad = {0x0, 0x0, 0x0, 0x0},
data = {
prev = 0x0,
cleanup = 0x0,
canceltype = 0
}
}
}
not_first_call = <optimized out>
pagesize_m1 = <optimized out>
sp = <optimized out>
freesize = <optimized out>
__PRETTY_FUNCTION__ = "start_thread"
#39 0x00002b4fd038d04d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111
No locals.
[Switching to thread 3 (Thread 0x2b4fecb5f700 (LWP 4543))]
#0 __lll_lock_wait () at ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:135
135 in ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S
#0 __lll_lock_wait () at ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:135
No locals.
#1 0x00002b4fd065a4d4 in _L_lock_952 () from /lib/x86_64-linux-gnu/libpthread.so.0
No symbol table info available.
#2 0x00002b4fd065a336 in __GI___pthread_mutex_lock (mutex=0x1ca1010) at
../nptl/pthread_mutex_lock.c:114
__PRETTY_FUNCTION__ = "__pthread_mutex_lock"
type = 4294966784
#3 0x00002b4fcfcdb58a in osl_acquireMutex (pMutex=0x1ca1010)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/sal/osl/unx/mutex.cxx:99
nRet = 0
#4 0x00002b4ff40a475f in osl::Mutex::acquire (this=this@entry=0x1ca1d68)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/osl/mutex.hxx:56
No locals.
#5 0x00002b4ff40ac28a in osl::Guard<osl::Mutex>::Guard (this=0x2b4fecb5cc30, t=...)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/osl/mutex.hxx:129
No locals.
#6 0x00002b4ff40b8342 in connectivity::hsqldb::ODriverDelegator::disposing (this=0x1ca1cf0,
Source=...)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/connectivity/source/drivers/hsqldb/HDriver.cxx:566
aGuard = {
pT = 0x1ca1d68
}
xCon = uno::Reference to (com::sun::star::uno::XInterface *) 0x234d138
#7 0x00002b4fe830e2f1 in gcc3::callVirtualMethod(void*, unsigned int, void*,
_typelib_TypeDescriptionReference*, bool, unsigned long*, unsigned int, unsigned long*, double*) ()
from /home/master/src/libreoffice/workdirs/libreoffice-5-1/instdir/program/libgcc3_uno.so
No symbol table info available.
#8 0x00002b4fe830d2bb in cpp_call (pThis=pThis@entry=0x20b26d0, aVtableSlot=...,
pReturnTypeRef=0x8ce880,
nParams=1, pParams=0x9f3730, pUnoReturn=pUnoReturn@entry=0x2b4ff4c003c0,
pUnoArgs=0x2b4ff4bffe00,
ppUnoExc=0x2b4ff4bffe80)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:245
pStack = 0x2b4fecb5cea0
pStackStart = 0x2b4fecb5cea0
pGPR = {30023008, 47622273748560, 47622273749096, 3, 47622273749056, 47622197978053}
nGPR = 2
pFPR = {4.9406564584124654e-324, 5.1551362840599007e-317, 0, 2.3528298193951942e-310,
6.3659873728958169e-314, 2.3528311331190074e-310, 5.1551362840599007e-317,
-6.537954409800711e-79}
nFPR = 0
pReturnTypeDescr = 0x8ce880
__PRETTY_FUNCTION__ = "void cpp_call(bridges::cpp_uno::shared::UnoInterfaceProxy*,
bridges::cpp_uno::shared::VtableSlot, typelib_TypeDescriptionReference*, sal_Int32,
typelib_MethodParameter*, void*, void**, uno_Any**)"
pCppReturn = 0x2b4ff4c003c0
bSimpleReturn = true
pAdjustedThisPtr = 0x1ca1d60
pCppArgs = 0x2b4fecb5ce70
pTempIndices = 0x2b4fecb5ce78
ppTempParamTypeDescr = 0x2b4fecb5ce80
nTempIndices = 1
#9 0x00002b4fe830dcd2 in bridges::cpp_uno::shared::unoInterfaceProxyDispatch (pUnoI=0x20b26d0,
pMemberDescr=0x9f3640, pReturn=0x2b4ff4c003c0, pArgs=0x2b4ff4bffe00, ppException=0x2b4ff4bffe80)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:443
nMemberPos = 3
aVtableSlot = {
offset = 0,
index = 3
}
pThis = 0x20b26d0
pTypeDescr = 0x9f2f30
__PRETTY_FUNCTION__ = "void
bridges::cpp_uno::shared::unoInterfaceProxyDispatch(uno_Interface*, const typelib_TypeDescription*,
void*, void**, uno_Any**)"
#10 0x00002b4ff47fd962 in s_dispatcher_v (pParam=pParam@entry=0x2b4ff4bffcf0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx:383
pUnoI = 0x20b26d0
pMemberType = 0x9f3640
pReturn = 0x2b4ff4c003c0
pArgs = 0x2b4ff4bffe00
ppException = 0x2b4ff4bffe80
#11 0x00002b4fd23fa2ea in s_environment_invoke_v (pCurrEnv=pCurrEnv@entry=0x0,
pTargetEnv=pTargetEnv@entry=0x1b57550, pCallee=pCallee@entry=0x2b4ff47fd7c6
<s_dispatcher_v(va_list*)>,
pParam=pParam@entry=0x2b4ff4bffcf0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:293
hld = 0x1ca7330
pNextEnv = 0x0
#12 0x00002b4fd23fa221 in s_environment_invoke_vv (pParam=0x2b4ff4bffb80)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:276
pCurrEnv = 0x0
pTargetEnv = 0x1b57550
pCallee = 0x2b4ff47fd7c6 <s_dispatcher_v(va_list*)>
pXparam = 0x2b4ff4bffcf0
#13 0x00002b4ff45f5f4b in AffineBridge::outerDispatch (this=this@entry=0x1ca77b0, loop=loop@entry=1)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/AffineBridge/AffineBridge.cxx:201
mm = AffineBridge::CB_FPOINTER
#14 0x00002b4ff45f6186 in AffineBridge::v_callInto_v (this=0x1ca77b0, pCallee=0x2b4fd23f9dda
<s_pull(va_list*)>,
pParam=0x2b4fecb5d3c0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/AffineBridge/AffineBridge.cxx:270
guard = {
pT = 0x1ca7820
}
resetId = true
#15 0x00002b4ff45f6b07 in cppu::Enterable_call_callInto_v (context=0x1ca77b0,
pCallee=0x2b4fd23f9dda <s_pull(va_list*)>, pParam=0x2b4fecb5d3c0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:69
No locals.
#16 0x00002b4ff47fbe97 in cppu::Enterable::callInto_v (this=0x1ca77b0,
pCallee=pCallee@entry=0x2b4fd23f9dda <s_pull(va_list*)>, pParam=pParam@entry=0x2b4fecb5d3c0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:53
No locals.
#17 0x00002b4ff47fbccf in Base::v_callInto_v (this=0x1ca7900, pCallee=0x2b4fd23f9dda
<s_pull(va_list*)>,
pParam=0x2b4fecb5d3c0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/helper/purpenv/helper_purpenv_Environment.cxx:508
No locals.
#18 0x00002b4ff47fbf6f in cppu::Enterable_call_callInto_v (context=0x1ca7900,
pCallee=0x2b4fd23f9dda <s_pull(va_list*)>, pParam=0x2b4fecb5d3c0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:69
No locals.
#19 0x00002b4fd23fa9b3 in cppu::Enterable::callInto_v (this=this@entry=0x1ca7900,
pCallee=pCallee@entry=0x2b4fd23f9dda <s_pull(va_list*)>, pParam=pParam@entry=0x2b4fecb5d3c0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:53
No locals.
#20 0x00002b4fd23faac8 in cppu::Enterable::callInto (this=this@entry=0x1ca7900,
pCallee=pCallee@entry=0x2b4fd23f9dda <s_pull(va_list*)>)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppu/Enterable.hxx:90
param = {{
gp_offset = 32,
fp_offset = 48,
overflow_arg_area = 0x2b4fecb5d4a0,
reg_save_area = 0x2b4fecb5d3e0
}}
#21 0x00002b4fd23f9ed0 in s_callInto_v (pEnv=pEnv@entry=0x1ca7330,
pCallee=pCallee@entry=0x2b4fd23fa0d5 <s_environment_invoke_vv(va_list*)>,
pParam=pParam@entry=0x2b4fecb5d4f0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:233
pEnterable = 0x1ca7900
#22 0x00002b4fd23f9f9a in s_callInto (pEnv=0x1ca7330,
pCallee=pCallee@entry=0x2b4fd23fa0d5 <s_environment_invoke_vv(va_list*)>)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:244
param = {{
gp_offset = 48,
fp_offset = 48,
overflow_arg_area = 0x2b4fecb5d5d0,
reg_save_area = 0x2b4fecb5d510
}}
#23 0x00002b4fd23fa332 in s_environment_invoke_v (pCurrEnv=0x0,
pTargetEnv=pTargetEnv@entry=0x1ca7330,
pCallee=pCallee@entry=0x2b4ff47fd7c6 <s_dispatcher_v(va_list*)>,
pParam=pParam@entry=0x2b4fecb5d660)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:300
pNextEnv = 0x1ca7330
#24 0x00002b4fd23fa3a0 in uno_Environment_invoke_v (pTargetEnv=pTargetEnv@entry=0x1ca7330,
pCallee=pCallee@entry=0x2b4ff47fd7c6 <s_dispatcher_v(va_list*)>,
pParam=pParam@entry=0x2b4fecb5d660)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:312
No locals.
#25 0x00002b4fd23fa472 in uno_Environment_invoke (pEnv=0x1ca7330,
pCallee=0x2b4ff47fd7c6 <s_dispatcher_v(va_list*)>)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/uno/EnvStack.cxx:321
param = {{
gp_offset = 48,
fp_offset = 48,
overflow_arg_area = 0x2b4fecb5d748,
reg_save_area = 0x2b4fecb5d680
}}
#26 0x00002b4ff47fdccc in Proxy::dispatch (this=this@entry=0x1cb3ac0,
pReturnTypeRef=pReturnTypeRef@entry=0x8ce880, pParams=pParams@entry=0x20789e0,
nParams=nParams@entry=0,
pMemberType=pMemberType@entry=0x236b4c0, pReturn=pReturn@entry=0x2b4fecb5dd90,
pArgs=0x2b4fecb5d9a0,
ppException=0x2b4fecb5da30)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx:445
args = 0x2b4fecb5d750
return_td = 0x8ce880
ret = 0x2b4fecb5dd90
exc_data = <error reading variable: Cannot access memory at address 0x8>
exc = 0x2b4fecb5d7f0
#27 0x00002b4ff47fcc7d in s_Proxy_dispatch (pUnoI=0x1cb3ac0, pMemberType=0x236b4c0,
pReturn=0x2b4fecb5dd90,
pArgs=0x2b4fecb5d9a0, ppException=0x2b4fecb5da30)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx:170
pThis = 0x1cb3ac0
param = {
pName = 0x0,
pTypeRef = 0x2535d80,
bIn = 0 '\000',
bOut = 247 '\367'
}
nParams = 0
pParams = 0x20789e0
pReturnTypeRef = 0x8ce880
#28 0x00002b4ff37a7336 in com::sun::star::uno::UnoInterfaceReference::dispatch
(this=this@entry=0x1caadb8,
pMemberType=pMemberType@entry=0x236b4c0, pReturn=pReturn@entry=0x2b4fecb5dd90,
pArgs=pArgs@entry=0x2b4fecb5d9a0, ppException=ppException@entry=0x2b4fecb5da30)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/uno/dispatcher.hxx:159
No locals.
#29 0x00002b4ff37a5e6c in (anonymous namespace)::binuno_proxy_dispatch (pUnoI=0x1caad90,
pMemberType=pMemberType@entry=0x236b4c0, pReturn=pReturn@entry=0x2b4fecb5dd90,
pArgs=pArgs@entry=0x2b4fecb5d9a0, ppException=ppException@entry=0x2b4fecb5da30)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/stoc/source/proxy_factory/proxyfac.cxx:283
that = 0x1caad90
#30 0x00002b4fe8302fd2 in cpp2uno_call (pThis=pThis@entry=0x20cdca0, pMemberTypeDescr=0x236b4c0,
pReturnTypeRef=pReturnTypeRef@entry=0x8ce880, nParams=nParams@entry=0,
pParams=pParams@entry=0x20789e0,
gpreg=0x2b4fecb5ddb8, gpreg@entry=0x2b4fecb5ddb0, fpreg=0x2b4fecb5dde0, ovrflw=0x2b4fecb5de30,
pRegisterReturn=0x2b4fecb5dd90)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx:186
nr_gpr = 1
nr_fpr = 0
pReturnTypeDescr = 0x8ce880
pUnoReturn = 0x2b4fecb5dd90
pCppReturn = 0x0
pUnoArgs = 0x2b4fecb5d9a0
pCppArgs = 0x2b4fecb5d9a0
pTempIndices = 0x2b4fecb5d9a0
ppTempParamTypeDescr = 0x2b4fecb5d9a0
nTempIndices = 0
__PRETTY_FUNCTION__ = "typelib_TypeClass
cpp2uno_call(bridges::cpp_uno::shared::CppInterfaceProxy*, const typelib_TypeDescription*,
typelib_TypeDescriptionReference*, sal_Int32, typelib_MethodParameter*, void**, void**, voi"...
aUnoExc = Python Exception <class 'libreoffice.util.uno.UnknownType'> :
pUnoExc = 0x2b4fecb5da80
#31 0x00002b4fe8303a6a in cpp_vtable_call (nFunctionIndex=<optimized out>, nVtableOffset=0,
gpreg=0x2b4fecb5ddb0, fpreg=0x2b4fecb5dde0, ovrflw=0x2b4fecb5de30,
pRegisterReturn=0x2b4fecb5dd90)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx:377
pMethodTD = 0x236b4c0
pThis = 0x20cdcc8
pCppI = 0x20cdca0
pTypeDescr = 0x1c79a20
nMemberPos = 3
__PRETTY_FUNCTION__ = "typelib_TypeClass cpp_vtable_call(sal_Int32, sal_Int32, void**,
void**, void**, sal_uInt64*)"
aMemberDescr = {
_pTypeDescr = 0x236b4c0
}
eRet = <optimized out>
#32 0x00002b4fe831ac12 in privateSnippetExecutor ()
from /home/master/src/libreoffice/workdirs/libreoffice-5-1/instdir/program/libgcc3_uno.so
No symbol table info available.
#33 0x00002b4fecd6e866 in dbaccess::OConnection::disposing (this=0x2058670)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/dbaccess/source/core/dataaccess/connection.cxx:492
aGuard = {
pT = 0x20586d8
}
aEnd = {
m_pImpl =
}
aComposerEnd = {
m_pImpl =
}
#34 0x00002b4fd26a8e73 in cppu::OComponentHelper::dispose (this=0x2058670)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppuhelper/source/component.cxx:178
xSource = uno::Reference to (dbaccess::OConnection *) 0x2058670
aEvt = {
Source = uno::Reference to (dbaccess::OConnection *) 0x2058670
}
aGuard = {
pT = 0x2058670
}
xSelf = uno::Reference to (dbaccess::OConnection *) 0x20586a8
bDoDispose = true
#35 0x00002b4feccdc32d in comphelper::disposeComponent<com::sun::star::sdbc::XConnection> (
_rxComp=uno::Reference to (dbaccess::OConnection *) 0x2058740)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/comphelper/types.hxx:109
xComp = uno::Reference to (dbaccess::OConnection *) 0x20586a8
#36 0x00002b4fecdbf35b in dbaccess::OSharedConnectionManager::disposing (this=0x1c9c020, Source=...)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/dbaccess/source/core/dataaccess/datasource.cxx:338
aGuard = {
pT = 0x1c9c050
}
xConnection = uno::Reference to (dbaccess::OSharedConnection *) 0x1cab440
aFind = {
first = uno::Reference to (dbaccess::OSharedConnection *) 0x1cab440,
second = {
first = {
m_pBuffer = "u\253_\233\256\351'C\030\000V2\r\372\r\321\347\315PF"
},
second = {
xMasterConnection = uno::Reference to (dbaccess::OConnection *) 0x2058740,
nALiveCount = 0
}
}
}
#37 0x00002b4fd26c51ae in cppu::OInterfaceContainerHelper::disposeAndClear (this=0x1cb1850,
rEvt=...)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppuhelper/source/interfacecontainer.cxx:312
xLst = uno::Reference to (dbaccess::OSharedConnectionManager *) 0x1c9c048
aGuard = {
pT = 0x0
}
aIt = {
rCont = @0x1cb1850,
bIsList = 1 '\001',
aData = {
pAsSequence = 0x20d2560,
pAsInterface = 0x20d2560
},
nRemain = 0
}
#38 0x00002b4fd26c5e3a in cppu::OMultiTypeInterfaceContainerHelper::disposeAndClear
(this=this@entry=0x1cab420,
rEvt=...)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/cppuhelper/source/interfacecontainer.cxx:485
i = 0
nSize = 1
ppListenerContainers = {
px = 0x2074670
}
#39 0x00002b4fd26c0797 in cppu::WeakComponentImplHelperBase::dispose (this=this@entry=0x1cab3f0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppuhelper/source/implbase.cxx:108
aEvt = {
Source = uno::Reference to (dbaccess::OSharedConnection *) 0x1cab3f0
}
aGuard2 = {
pT = 0x0
}
aGuard = {
pT = 0x0
}
#40 0x00002b4fece22098 in
cppu::WeakComponentImplHelper1<com::sun::star::sdbc::XConnection>::dispose (
this=0x1cab3f0) at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/include/cppuhelper/compbase1.hxx:60
No locals.
#41 0x00002b4fece21761 in dbaccess::OSharedConnection::close (this=0x1cab3f0)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/dbaccess/source/core/dataaccess/SharedConnection.hxx:84
No locals.
#42 0x00002b4fe830e2f1 in gcc3::callVirtualMethod(void*, unsigned int, void*,
_typelib_TypeDescriptionReference*, bool, unsigned long*, unsigned int, unsigned long*, double*) ()
from /home/master/src/libreoffice/workdirs/libreoffice-5-1/instdir/program/libgcc3_uno.so
No symbol table info available.
#43 0x00002b4fe830d2bb in cpp_call (pThis=pThis@entry=0x2077000, aVtableSlot=...,
pReturnTypeRef=0x8ce880,
nParams=0, pParams=0x0, pUnoReturn=pUnoReturn@entry=0x0, pUnoArgs=0x0, ppUnoExc=0x2b4fecb5e768)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:245
pStack = 0x2b4fecb5e460
pStackStart = 0x2b4fecb5e460
pGPR = {30061632, 12884901891, 47622273754560, 3, 47622273754624, 47622197978053}
nGPR = 1
pFPR = {0, 1.9277382223980757e-316, 2.3528529438999046e-310, 2.3528504783636675e-310,
6.3659873728958169e-314, 0, 1.9277382223980757e-316, -6.537954409800711e-79}
nFPR = 0
pReturnTypeDescr = 0x8ce880
__PRETTY_FUNCTION__ = "void cpp_call(bridges::cpp_uno::shared::UnoInterfaceProxy*,
bridges::cpp_uno::shared::VtableSlot, typelib_TypeDescriptionReference*, sal_Int32,
typelib_MethodParameter*, void*, void**, uno_Any**)"
pCppReturn = 0x0
bSimpleReturn = true
pAdjustedThisPtr = 0x1cab440
pCppArgs = 0x2b4fecb5e450
pTempIndices = 0x2b4fecb5e450
ppTempParamTypeDescr = 0x2b4fecb5e450
nTempIndices = 0
#44 0x00002b4fe830dcd2 in bridges::cpp_uno::shared::unoInterfaceProxyDispatch (pUnoI=0x2077000,
pMemberDescr=0x2535d80, pReturn=0x0, pArgs=0x0, ppException=0x2b4fecb5e768)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:443
nMemberPos = 3
aVtableSlot = {
offset = 0,
index = 3
}
pThis = 0x2077000
pTypeDescr = 0x1c79a20
__PRETTY_FUNCTION__ = "void
bridges::cpp_uno::shared::unoInterfaceProxyDispatch(uno_Interface*, const typelib_TypeDescription*,
void*, void**, uno_Any**)"
#45 0x00002b4fe9bc171e in binaryurp::IncomingRequest::execute_throw (this=this@entry=0x212e470,
returnValue=returnValue@entry=0x2b4fecb5e9e0, outArguments=outArguments@entry=0x2b4fecb5ea60)
at
/home/master/src/libreoffice/workdirs/libreoffice-5-1/binaryurp/source/incomingrequest.cxx:241
exc = empty _uno_Any
pexc = 0x2b4fecb5e790
retType = {
_pTypeDescr = 0x8ce880
}
nSize = 0
retBuf = std::__debug::vector of length 0, capacity 0
outBufs = empty std::__debug::listPython Exception <type 'exceptions.ValueError'> Cannot
find type std::__debug::list<std::__debug::vector<char, std::allocator<char> >,
std::allocator<std::__debug::vector<char, std::allocator<char> > > >::_Node:
args = std::__debug::vector of length 0, capacity 0
isExc = false
#46 0x00002b4fe9bc062e in binaryurp::IncomingRequest::execute (this=0x212e470)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/binaryurp/source/incomingrequest.cxx:73
resetCc = true
oldCc = {
m_pUnoI = 0x0
}
ret = {
data_ = empty _uno_Any
}
outArgs = std::__debug::vector of length 0, capacity 0
isExc = <optimized out>
#47 0x00002b4fe9be3f36 in binaryurp::(anonymous namespace)::request (pThreadSpecificData=0x212e470)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/binaryurp/source/reader.cxx:85
__PRETTY_FUNCTION__ = "void binaryurp::{anonymous}::request(void*)"
#48 0x00002b4fd23c56ea in cppu_threadpool::JobQueue::enter (this=0x21ca3a0, nDisposeId=34224976,
bReturnWhenNoJob=bReturnWhenNoJob@entry=true)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/threadpool/jobqueue.cxx:115
guard = {
pT = 0x21ca3a0
}
job = {
pThreadSpecificData = 0x212e470,
doRequest = 0x2b4fe9be3ecd <binaryurp::(anonymous namespace)::request(void*)>
}
pReturn = 0x0
#49 0x00002b4fd23c9142 in cppu_threadpool::ORequestThread::run (this=0x20a3b50)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/cppu/source/threadpool/thread.cxx:171
No locals.
#50 0x00002b4fd23c9520 in osl::threadFunc (param=0x20a3b60)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/include/osl/thread.hxx:184
pObj = 0x20a3b60
#51 0x00002b4fcfceeccf in osl_thread_start_Impl (pData=0x26253a0)
at /home/master/src/libreoffice/workdirs/libreoffice-5-1/sal/osl/unx/thread.cxx:240
terminate = false
pImpl = 0x26253a0
__PRETTY_FUNCTION__ = "void* osl_thread_start_Impl(void*)"
#52 0x00002b4fd06580a4 in start_thread (arg=0x2b4fecb5f700) at pthread_create.c:309
__res = <optimized out>
pd = 0x2b4fecb5f700
now = <optimized out>
unwind_buf = {
cancel_jmp_buf = {{
jmp_buf = {47622273758976, 7436663082866490222, 0, 28731296, 22, 47622273758976,
3579109118973361006, 3579224152552160110},
mask_was_saved = 0
}},
priv = {
pad = {0x0, 0x0, 0x0, 0x0},
data = {
prev = 0x0,
cleanup = 0x0,
canceltype = 0
}
}
}
not_first_call = <optimized out>
pagesize_m1 = <optimized out>
sp = <optimized out>
freesize = <optimized out>
__PRETTY_FUNCTION__ = "start_thread"
#53 0x00002b4fd038d04d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111
No locals.
Context
- help needed: hsqldb shutdown race condition, how to fix without deadlock · Lionel Elie Mamane
Privacy Policy |
Impressum (Legal Info) |
Copyright information: Unless otherwise specified, all text and images
on this website are licensed under the
Creative Commons Attribution-Share Alike 3.0 License.
This does not include the source code of LibreOffice, which is
licensed under the Mozilla Public License (
MPLv2).
"LibreOffice" and "The Document Foundation" are
registered trademarks of their corresponding registered owners or are
in actual use as trademarks in one or more countries. Their respective
logos and icons are also subject to international copyright laws. Use
thereof is explained in our
trademark policy.