Comment 1 for bug 298354

Revision history for this message
LimCore (limcore) wrote :

Thanks to debug symbols ( https://wiki.ubuntu.com/DebuggingProgramCrash )
now we can see:

0x000000000040ecfa in QValueListPrivate<QString>::at (this=0x6794c0, i=18446744073709551615) at /usr/share/qt3/include/qvaluelist.h:378
378 for( size_type x = 0; x < i; ++x )

(gdb) bt
#0 0x000000000040ecfa in QValueListPrivate<QString>::at (this=0x6794c0, i=18446744073709551615) at /usr/share/qt3/include/qvaluelist.h:378
#1 0x000000000040f439 in main (argc=3, argv=<value optimized out>) at /usr/share/qt3/include/qvaluelist.h:539

(gdb) print *this
$1 = {<QShared> = {count = 1}, node = 0x6794e0, nodes = 0}

The index in the list seems a bit wrong, lol.