[konsole] [Bug 369050] Konsole crashs randomly.

2020-10-23 Thread Justin
https://bugs.kde.org/show_bug.cgi?id=369050

Justin  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |FIXED

--- Comment #24 from Justin  ---
Thanks for the update. I'll close this bug but if it comes back again feel free
to report it.

-- 
You are receiving this mail because:
You are watching all bug changes.

[konsole] [Bug 369050] Konsole crashs randomly.

2020-10-23 Thread Chris Ross
https://bugs.kde.org/show_bug.cgi?id=369050

--- Comment #23 from Chris Ross  ---
(In reply to Justin from comment #22)
> Can you please confirm if this is still an issue with Konsole 20.08.1+.

I am running Konsole 20.04.1 and I can confirm that is stable. It has not
crashed for me in a very long time despite my running it all day, every day, on
two different computers (one running Fedora 31, the other F32).

-- 
You are receiving this mail because:
You are watching all bug changes.

[konsole] [Bug 369050] Konsole crashs randomly.

2020-10-22 Thread Justin
https://bugs.kde.org/show_bug.cgi?id=369050

Justin  changed:

   What|Removed |Added

 CC||justin.zo...@gmail.com
 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #22 from Justin  ---
Can you please confirm if this is still an issue with Konsole 20.08.1+.

-- 
You are receiving this mail because:
You are watching all bug changes.

[konsole] [Bug 369050] Konsole crashs randomly.

2017-01-24 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=369050

Christoph Feck  changed:

   What|Removed |Added

 CC||mo...@morry.kiev.ua

--- Comment #21 from Christoph Feck  ---
*** Bug 375485 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[konsole] [Bug 369050] Konsole crashs randomly.

2017-01-24 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=369050

--- Comment #20 from Christoph Feck  ---
Looks related to Qt AT-SPI accessibility, maybe that's the reason developers
cannot reproduce it.

-- 
You are receiving this mail because:
You are watching all bug changes.

[konsole] [Bug 369050] Konsole crashs randomly.

2017-01-20 Thread Bernhard Übelacker
https://bugs.kde.org/show_bug.cgi?id=369050

--- Comment #19 from Bernhard Übelacker  ---
Created attachment 103561
  --> https://bugs.kde.org/attachment.cgi?id=103561=edit
gdb session with some pretty-printers showing the event details.

Hello,
It took some time to get the pretty-printers in place.
Please see attached file for more informations on the
QDBusCallDeliveryEvent object.

Who is sending the message I could not find out.
Right now no "org.a11y.atspi.Registry" is visible
in qdbusviewer, just a "org.a11y.Bus" ?

At least in [1] Qt5 seems to listen to this
"EventListenerDeregistered" message.

The message member seems to contain a member arguments [2],
a QList, containing 2 QVariant of type = 10.

type = 10 == QVariant::String == QMetaType::QString ?

The error message:
Internal error: got invalid meta type 11 (QStringList)
when trying to convert to meta type 10 (QString)

So it looks like the arguments got converted in [3] somehow to
a QStringList instead a QString, and do therefore not
match the "eventListenerDeregistered" signature anymore.


Kind regards,
Bernhard





[1]
qtbase-opensource-src-5.7.1+dfsg/src/platformsupport/linuxaccessibility/atspiadaptor.cpp:140
success = success &&
m_dbus->connection().connect(QLatin1String("org.a11y.atspi.Registry"),
QLatin1String("/org/a11y/atspi/registry"),
 
QLatin1String("org.a11y.atspi.Registry"),
QLatin1String("EventListenerDeregistered"), this,
 
SLOT(eventListenerDeregistered(QString,QString)));

[2]
(gdb) print *(e->message.d_ptr)
$8 = {
  arguments = QList = {
[0] = {
  d = {
data = {
  ..
  ptr = 0x7fb1100117f0, 
  shared = 0x7fb1100117f0
}, 
type = 10, 
is_shared = 0, 
is_null = 0
  }
},
[1] = {
  d = {
data = {
  ..
  ptr = 0x7fb1100172c0, 
  shared = 0x7fb1100172c0
}, 
type = 10, 
is_shared = 0, 
is_null = 0
  }
}
  }, 
  ...
  interface = "org.a11y.atspi.Registry", 
  name = "EventListenerDeregistered", 
  ...

[3] qtbase-opensource-src-5.7.1+dfsg/src/dbus/qdbusintegrator.cpp:935
const QVariant  = msg.arguments().at(i - 1);
if (arg.userType() == id)
...
else if (arg.userType() == qMetaTypeId()) {
...
} else {
qFatal("Internal error: got invalid meta type %d (%s) "
   "when trying to convert to meta type %d (%s)",
   arg.userType(), QMetaType::typeName(arg.userType()),
   id, QMetaType::typeName(id));
}

-- 
You are receiving this mail because:
You are watching all bug changes.

[konsole] [Bug 369050] Konsole crashs randomly.

2017-01-19 Thread Bernhard Übelacker
https://bugs.kde.org/show_bug.cgi?id=369050

Bernhard Übelacker  changed:

   What|Removed |Added

 CC||bernha...@mailbox.org

--- Comment #18 from Bernhard Übelacker  ---
I think I got the same issue here.
It happened when I switched a some video playing in VLC (started via dolphin).
When switching back I noticed my konsoles did disappear.

(In reply to Martin Sandsmark from comment #17)
> Can someone see if they can find the actual error message ... or in 
> .xsession-errors?

Internal error: got invalid meta type 11 (QStringList) when trying to convert
to meta type 10 (QString)
KCrash: crashing... crashRecursionCounter = 2
KCrash: Application Name = kdeinit5 path = /usr/bin pid = 12699
KCrash: Arguments: /usr/bin/kdeinit5 --workdir /home/bernhard/data

I still have the process existing and trying to inspect
with gdb with debian debug symbols installed.
Unfortunately nearly all that I want to see is  ...

...
(gdb) up
#12 0x7fb12f591b2c in QApplicationPrivate::notify_helper (this=, receiver=0xed8120, e=0x7fb110016490) at kernel/qapplication.cpp:3799
3799bool consumed = receiver->event(e);
(gdb) print *e
$57 = (QDBusCallDeliveryEvent) { = { = {_vptr.QEvent =
0x7fb127d49eb0 , d = 0x0, t = 43, posted
= 0, spont = 0, m_accept = 1, reserved = 0}, slotObj_ = 0x0, sender_ =
0x7fb110012500, signalId_ = -1, nargs_ = 0, types_ = 0x0, args_ = 0x0,
semaphore_ = 0x0, callFunction_ = 0x0, method_offset_ = 0, method_relative_ =
6}, connection = {d = 0x7fb110012500}, message = {d_ptr = 0x7fb1100139d0},
metaTypes = {d = 0xad1490}, flags = 0}
(gdb) print *(e->message.d_ptr)
$60 = {arguments = { = {}, {p =
{d = 0x7fb110017290}, d = 0x7fb110017290}}, service = {d = 0x7fb110017260},
path = {d = 0x7fb110017200}, interface = {d = 0x7fb1100171b0}, name = {d =
0x7fb1100170f0}, message = {d = 0x7fb130da6e80 },
signature = {d = 0x7fb1100173a0}, msg = 0x7fb110012d60, reply = 0x0, localReply
= 0x0, ref = { = { = {_q_value =
{ = {_M_i = 1}, }}, },
}, type = QDBusMessage::SignalMessage, delayedReply = 0,
localMessage = 0, parametersValidated = 0, autoStartService = 1}
(gdb) print *(e->metaTypes.d)
$63 = { = {ref = {atomic = {_q_value = { =
{_M_i = 2}, }}}, size = 3, alloc = 10, capacityReserved = 0,
offset = 24}, }

(gdb) printq5string e->message.d_ptr.name
EventListenerDeregistered
(gdb) printq5string e->message.d_ptr.service
:1.7
(gdb) printq5string e->message.d_ptr.path
/org/a11y/atspi/registry
(gdb) printq5string e->message.d_ptr.interface
org.a11y.atspi.Registry
(gdb) printq5string e->message.d_ptr.signature
ss

Is there anything else someone is interested in while the process still exists?

-- 
You are receiving this mail because:
You are watching all bug changes.

[konsole] [Bug 369050] Konsole crashs randomly.

2016-11-05 Thread Martin Sandsmark
https://bugs.kde.org/show_bug.cgi?id=369050

Martin Sandsmark  changed:

   What|Removed |Added

 CC||martin.sandsm...@kde.org

--- Comment #17 from Martin Sandsmark  ---
Can someone see if they can find the actual error message that should be
displayed when Qt aborts Konsole when this happens? Either in the journal (with
«journalctl») or in .xsession-errors?

The message should be something with «Internal error: got invalid meta type
[...]», the interesting thing is the rest of the message indicating the invalid
values.

IMHO, Qt shouldn't abort on this kind of error at all. Unfortunately there's
nothing Konsole or other applications can do about it.

-- 
You are receiving this mail because:
You are watching all bug changes.

[konsole] [Bug 369050] Konsole crashs randomly.

2016-10-28 Thread Maarten ter Huurne
https://bugs.kde.org/show_bug.cgi?id=369050

--- Comment #16 from Maarten ter Huurne  ---
I haven't found a reliable way yet to reproduce the crash, but I did observe
some things that might be useful.

One time Konsole crashed very shortly after a new e-mail came in and the new
mail notification was displayed.

If I keep opening lots of Konsole instances via a button in the panel, at some
point they all crash at the same time. This seems to happen more often if I
don't allow Konsole to be grouped in the task bar, but I'm not sure if this is
a rule or a coincidence.

I have been monitoring the DBUS session and system bus to see if there is any
particular type of message that triggers this crash. There was no activity on
the system bus when Konsole crashed, but lots of activity on the session bus,
so I wasn't able to pin-point any particular message.

-- 
You are receiving this mail because:
You are watching all bug changes.

[konsole] [Bug 369050] Konsole crashs randomly.

2016-10-23 Thread Christophe Larsonneur via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369050

--- Comment #15 from Christophe Larsonneur  ---
Hi,

No, unfortunately, I did not find a way to reproduce it. It looks random.
I tried to understand what was wrong but I found nothing that could explain. At
least for now. 

If I found something new to help reproducing it, I will let you know.

For now, I'm not fully sure, but It looks to be a little more stable. At least,
I can say that I haven't seen new crash as frequent as I saw before.

-- 
You are receiving this mail because:
You are watching all bug changes.


[konsole] [Bug 369050] Konsole crashs randomly.

2016-10-22 Thread Christoph Feck via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369050

Christoph Feck  changed:

   What|Removed |Added

 CC||kdeb1...@tebibyte.org

--- Comment #14 from Christoph Feck  ---
*** Bug 370330 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.


[konsole] [Bug 369050] Konsole crashs randomly.

2016-10-22 Thread Christoph Feck via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369050

Christoph Feck  changed:

   What|Removed |Added

 CC||bugs.kde@queuemail.com

--- Comment #13 from Christoph Feck  ---
*** Bug 370309 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.


[konsole] [Bug 369050] Konsole crashs randomly.

2016-10-22 Thread Christoph Feck via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369050

--- Comment #12 from Christoph Feck  ---
*** Bug 365374 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.


[konsole] [Bug 369050] Konsole crashs randomly.

2016-10-22 Thread Christoph Feck via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369050

Christoph Feck  changed:

   What|Removed |Added

 CC||mma...@suse.de

--- Comment #11 from Christoph Feck  ---
*** Bug 365347 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.


[konsole] [Bug 369050] Konsole crashs randomly.

2016-10-22 Thread Christoph Feck via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369050

Christoph Feck  changed:

   What|Removed |Added

 CC||ba...@barrys-emacs.org

--- Comment #10 from Christoph Feck  ---
*** Bug 364685 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.


[konsole] [Bug 369050] Konsole crashs randomly.

2016-10-22 Thread Christoph Feck via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369050

Christoph Feck  changed:

   What|Removed |Added

 CC||kondo...@gmail.com

--- Comment #8 from Christoph Feck  ---
*** Bug 363926 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.


[konsole] [Bug 369050] Konsole crashs randomly.

2016-10-22 Thread Christoph Feck via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369050

Christoph Feck  changed:

   What|Removed |Added

 CC||liviu.va...@gmail.com

--- Comment #9 from Christoph Feck  ---
*** Bug 364587 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.


[konsole] [Bug 369050] Konsole crashs randomly.

2016-10-22 Thread Christoph Feck via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369050

Christoph Feck  changed:

   What|Removed |Added

 CC||a...@csh.rit.edu

--- Comment #7 from Christoph Feck  ---
*** Bug 362893 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.


[konsole] [Bug 369050] Konsole crashs randomly.

2016-10-22 Thread Christoph Feck via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369050

Christoph Feck  changed:

   What|Removed |Added

 CC||cf...@kde.org

--- Comment #6 from Christoph Feck  ---
Is there a reliable way to reproduce this? The bug is in the Qt library, but Qt
developers need a test case to be able to reproduce and fix it.

-- 
You are receiving this mail because:
You are watching all bug changes.


[konsole] [Bug 369050] Konsole crashs randomly.

2016-10-22 Thread Christophe Larsonneur via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369050

--- Comment #4 from Christophe Larsonneur  ---
I believe this issue is co-related to DBus:

Look here:
QMessageLogger::fatal (this=this@entry=0x7ffd82b96dd0,
msg=msg@entry=0x7f1f8ed8bba8 "Internal error: got invalid meta type %d (%s)
when trying to convert to meta type %d (%s)") at global/qlogging.cpp:790 #10
0x7f1f8ed3b1b1 in QDBusConnectionPrivate::deliverCall (this=, object=, msg=..., metaTypes=..., slotIdx=)
at qdbusintegrator.cpp:940

So, konsole did deal correctly with this internal error and DBus crashed
konsole...

-- 
You are receiving this mail because:
You are watching all bug changes.


[konsole] [Bug 369050] Konsole crashs randomly.

2016-10-22 Thread Christophe Larsonneur via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369050

--- Comment #5 from Christophe Larsonneur  ---
... konsole did NOT deal ...

-- 
You are receiving this mail because:
You are watching all bug changes.


[konsole] [Bug 369050] Konsole crashs randomly.

2016-10-22 Thread Christophe Larsonneur via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369050

--- Comment #3 from Christophe Larsonneur  ---
ok. I haven't seen it on kmix crash. But I believe you are right. It is
certainly something around konsole, ie a library somewhere.

This said, even if a library may fail, I do not expect konsole to crash.

-- 
You are receiving this mail because:
You are watching all bug changes.


[konsole] [Bug 369050] Konsole crashs randomly.

2016-10-21 Thread Maarten ter Huurne via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369050

Maarten ter Huurne  changed:

   What|Removed |Added

 CC||maar...@treewalker.org

--- Comment #2 from Maarten ter Huurne  ---
I had a crash of Konsole today with a very similar backtrace. However, I had
seen that backtrace before, when kmix crashed, which I reported as bug 370650.
So I think it's a problem in a library rather than in Konsole itself, but I
don't know which library to file it on.

Application: konsole (15.12.3)

Qt Version: 5.7.0
Frameworks Version: 5.27.0
Operating System: Linux 4.1.31-30-default x86_64
Distribution: "openSUSE Leap 42.1 (x86_64)"

Thread 1 (Thread 0x7ff55aef1800 (LWP 2888)):
[KCrash Handler]
#6  0x7ff55a7870c7 in raise () from /lib64/libc.so.6
#7  0x7ff55a788478 in abort () from /lib64/libc.so.6
#8  0x7ff556c57c7e in qt_message_fatal (context=..., message=) at global/qlogging.cpp:1680
#9  QMessageLogger::fatal (this=this@entry=0x7ffe718dfcb0,
msg=msg@entry=0x7ff5550907b0 "Internal error: got invalid meta type %d (%s)
when trying to convert to meta type %d (%s)") at global/qlogging.cpp:793
#10 0x7ff5550497f4 in QDBusConnectionPrivate::deliverCall
(this=0x7ff5400039c0, object=0x2562680, msg=..., metaTypes=..., slotIdx=11) at
qdbusintegrator.cpp:948
#11 0x7ff556e4cdc6 in QObject::event (this=0x2562680, e=) at
kernel/qobject.cpp:1263
#12 0x7ff557adaa9c in QApplicationPrivate::notify_helper (this=, receiver=0x2562680, e=0x7ff54000c230) at kernel/qapplication.cpp:3799
#13 0x7ff557ae1a20 in QApplication::notify (this=0x7ffe718e0470,
receiver=0x2562680, e=0x7ff54000c230) at kernel/qapplication.cpp:3556
#14 0x7ff556e235c5 in QCoreApplication::notifyInternal2
(receiver=0x2562680, event=event@entry=0x7ff54000c230) at
kernel/qcoreapplication.cpp:988
#15 0x7ff556e25623 in QCoreApplication::sendEvent (event=0x7ff54000c230,
receiver=) at kernel/qcoreapplication.h:231
#16 QCoreApplicationPrivate::sendPostedEvents (receiver=receiver@entry=0x0,
event_type=event_type@entry=0, data=0x2217eb0) at
kernel/qcoreapplication.cpp:1649
#17 0x7ff556e25b68 in QCoreApplication::sendPostedEvents
(receiver=receiver@entry=0x0, event_type=event_type@entry=0) at
kernel/qcoreapplication.cpp:1503
#18 0x7ff556e726e3 in postEventSourceDispatch (s=0x229c3c0) at
kernel/qeventdispatcher_glib.cpp:276
#19 0x7ff54fcb5c84 in g_main_dispatch (context=0x7ff540002450) at
gmain.c:3122
#20 g_main_context_dispatch (context=context@entry=0x7ff540002450) at
gmain.c:3737
#21 0x7ff54fcb5ed8 in g_main_context_iterate
(context=context@entry=0x7ff540002450, block=block@entry=1,
dispatch=dispatch@entry=1, self=) at gmain.c:3808
#22 0x7ff54fcb5f7c in g_main_context_iteration (context=0x7ff540002450,
may_block=1) at gmain.c:3869
#23 0x7ff556e71f2c in QEventDispatcherGlib::processEvents (this=0x222df80,
flags=...) at kernel/qeventdispatcher_glib.cpp:423
#24 0x7ff556e2189b in QEventLoop::exec (this=this@entry=0x7ffe718e0330,
flags=..., flags@entry=...) at kernel/qeventloop.cpp:210
#25 0x7ff556e29696 in QCoreApplication::exec () at
kernel/qcoreapplication.cpp:1261
#26 0x7ff55ab22e87 in kdemain () from /usr/lib64/libkdeinit5_konsole.so
#27 0x7ff55a773b25 in __libc_start_main () from /lib64/libc.so.6
#28 0x004007ee in _start ()

-- 
You are receiving this mail because:
You are watching all bug changes.


[konsole] [Bug 369050] Konsole crashs randomly.

2016-10-05 Thread Christophe Larsonneur via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369050

--- Comment #1 from Christophe Larsonneur  ---
Hi,

It looks like konsole is crashing really more frequently. About 3/5 per days.

Konsole version 15.12.3
Using:
KDE Frameworks 5.26.0
Qt 5.6.1 (built against 5.6.1)
The xcb windowing system

Following is the crash information:

Application: Konsole (kdeinit5), signal: Aborted
Using host libthread_db library "/lib64/libthread_db.so.1".
84T_PSEUDO (SYSCALL_SYMBOL, SYSCALL_NAME, SYSCALL_NARGS)
[Current thread is 1 (Thread 0x7f789eb148c0 (LWP 8923))]

Thread 3 (Thread 0x7f78827e0700 (LWP 8924)):
#0  0x7f789c08bb7d in poll () at ../sysdeps/unix/syscall-template.S:84
#1  0x7f789a72218c in g_main_context_poll (priority=2147483647, n_fds=1,
fds=0x7f787c0033b0, timeout=, context=0x7f787c001600) at
gmain.c:4135
#2  g_main_context_iterate (context=context@entry=0x7f787c001600,
block=block@entry=1, dispatch=dispatch@entry=1, self=) at
gmain.c:3835
#3  0x7f789a72229c in g_main_context_iteration (context=0x7f787c001600,
may_block=may_block@entry=1) at gmain.c:3901
#4  0x7f789ce80b5b in QEventDispatcherGlib::processEvents
(this=0x7f787c0008e0, flags=...) at kernel/qeventdispatcher_glib.cpp:419
#5  0x7f789ce3125a in QEventLoop::exec (this=this@entry=0x7f78827dfcd0,
flags=..., flags@entry=...) at kernel/qeventloop.cpp:204
#6  0x7f789cc91bd4 in QThread::exec (this=this@entry=0x7f789ec43040
<(anonymous namespace)::Q_QGS__q_manager::innerFunction()::holder>) at
thread/qthread.cpp:500
#7  0x7f789ebcf675 in QDBusConnectionManager::run (this=0x7f789ec43040
<(anonymous namespace)::Q_QGS__q_manager::innerFunction()::holder>) at
qdbusconnection.cpp:189
#8  0x7f789cc9600c in QThreadPrivate::start (arg=0x7f789ec43040 <(anonymous
namespace)::Q_QGS__q_manager::innerFunction()::holder>) at
thread/qthread_unix.cpp:341
#9  0x7f789b8d761a in start_thread (arg=0x7f78827e0700) at
pthread_create.c:334
#10 0x7f789c0975fd in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 2 (Thread 0x7f787a157700 (LWP 8925)):
#0  0x7f789c08bb7d in poll () at ../sysdeps/unix/syscall-template.S:84
#1  0x7f789de42272 in poll (__timeout=-1, __nfds=1, __fds=0x7f787a156c00)
at /usr/include/bits/poll2.h:46
#2  _xcb_conn_wait (c=c@entry=0x560103544520, cond=cond@entry=0x560103544560,
vector=vector@entry=0x0, count=count@entry=0x0) at xcb_conn.c:459
#3  0x7f789de43ee7 in xcb_wait_for_event (c=0x560103544520) at xcb_in.c:693
#4  0x7f7881ef2039 in QXcbEventReader::run (this=0x560103551f40) at
qxcbconnection.cpp:1325
#5  0x7f789cc9600c in QThreadPrivate::start (arg=0x560103551f40) at
thread/qthread_unix.cpp:341
#6  0x7f789b8d761a in start_thread (arg=0x7f787a157700) at
pthread_create.c:334
#7  0x7f789c0975fd in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 1 (Thread 0x7f789eb148c0 (LWP 8923)):
[KCrash Handler]
#6  0x7f789bfc9a28 in __GI_raise (sig=sig@entry=6) at
../sysdeps/unix/sysv/linux/raise.c:55
#7  0x7f789bfcb62a in __GI_abort () at abort.c:89
#8  0x7f789cc823a1 in qt_message_fatal (context=..., message=) at global/qlogging.cpp:1648
#9  QMessageLogger::fatal (this=this@entry=0x7fff92692f90,
msg=msg@entry=0x7f789ec2bba8 "Internal error: got invalid meta type %d (%s)
when trying to convert to meta type %d (%s)") at global/qlogging.cpp:790
#10 0x7f789ebdb1b1 in QDBusConnectionPrivate::deliverCall (this=, object=, msg=..., metaTypes=..., slotIdx=)
at qdbusintegrator.cpp:940
#11 0x7f789ce5a871 in QObject::event (this=0x560103b26c30, e=) at kernel/qobject.cpp:1256
#12 0x7f789d6c210c in QApplicationPrivate::notify_helper (this=, receiver=0x560103b26c30, e=0x7f787c0151d0) at
kernel/qapplication.cpp:3804
#13 0x7f789d6c7646 in QApplication::notify (this=0x7fff926936b0,
receiver=0x560103b26c30, e=0x7f787c0151d0) at kernel/qapplication.cpp:3561
#14 0x7f789ce323ea in QCoreApplication::notifyInternal2
(receiver=0x560103b26c30, event=event@entry=0x7f787c0151d0) at
kernel/qcoreapplication.cpp:1015
#15 0x7f789ce3440a in QCoreApplication::sendEvent (event=0x7f787c0151d0,
receiver=) at kernel/qcoreapplication.h:225
#16 QCoreApplicationPrivate::sendPostedEvents (receiver=receiver@entry=0x0,
event_type=event_type@entry=0, data=0x5601034a8e30) at
kernel/qcoreapplication.cpp:1650
#17 0x7f789ce348c8 in QCoreApplication::sendPostedEvents
(receiver=receiver@entry=0x0, event_type=event_type@entry=0) at
kernel/qcoreapplication.cpp:1508
#18 0x7f789ce80ac3 in postEventSourceDispatch (s=0x560103650f00) at
kernel/qeventdispatcher_glib.cpp:270
#19 0x7f789a721e5a in g_main_dispatch (context=0x7f787c001710) at
gmain.c:3154
#20 g_main_context_dispatch (context=context@entry=0x7f787c001710) at
gmain.c:3769
#21 0x7f789a7221f0 in g_main_context_iterate
(context=context@entry=0x7f787c001710, block=block@entry=1,
dispatch=dispatch@entry=1, self=) at gmain.c:3840
#22 0x7f789a72229c in g_main_context_iteration