#699423 marble: Segfaults while typing in coordinates

Package:
marble
Source:
marble
Description:
globe and map widget
Submitter:
David M Smith
Date:
2020-12-07 17:42:03 UTC
Severity:
important
Tags:
#699423#5
Date:
2013-01-31 10:01:18 UTC
From:
To:
When typing in GPS coordinates (ie: 23,113) and then pressing enter.. All
within 1 second of marble loading, Then marble crashes.  If you type in the GPS
coordinates and wait a second before hitting enter, marble doesn't crash.

#699423#12
Date:
2014-07-28 10:42:38 UTC
From:
To:
Hi,

I couldn't reproduce this issue, but running marble with helgrind is a
nightmare.

The recommended way use helgrind with kde programs is:
QT_NO_GLIB=1 valgrind --tool=helgrind --track-lockorders=no marble

I find quite useful to have a gdb attached to valgrind with the vgdb
interface, so:
QT_NO_GLIB=1 valgrind --tool=helgrind --track-lockorders=no --vgdb-error=0 --verbose marble
and follow the valgrind indications to have a gdb connected to it.

The backtrace reported upstream seems to have segfaulted after accessing the
value() of a KBiAssociativeContainer right (KMap) result, so, is that an
indication that the map node is no longer valid? I don't know.

Happy hacking,