From: Jonathan N. <j.n...@gm...> - 2012-10-21 09:56:26
|
Hi! Gtkpod crashed today, so I fired up gdb to have a look at the cause. Here's part of the backtrace: #0 __strcmp_ia32 () at ../sysdeps/i386/i686/multiarch/../strcmp.S:39 #1 0xb778f6bc in fuzzy_skip_prefix (name=name@entry=0x0) at misc.c:479 #2 0xafa8ba47 in _st_build_sortkeys (entry=0x9526ba8) at normal_sorttab_page.c:286 #3 0xafa8d74b in normal_sort_tab_page_add_track (self=0x8c2c2c8, track=track@entry=0x912d878, final=final@entry=0, display=display@entry=1) at normal_sorttab_page.c:965 As you can see, fuzzy_skip_prefix is called with a NULL pointer as its argument. That's because line 957 was reached with entryname == NULL and entry == NULL. (I haven't done any further debugging yet, but you might be able to find the bug from the hints I gave so far.) Thanks, Jonathan Neuschäfer |