[mythtv] Delete Recording problem/bug in CVS...

Isaac Richards mythtv-dev@snowman.net
Wed, 18 Dec 2002 16:48:40 -0500


On Wednesday 18 December 2002 04:35 pm, Dan Man wrote:
> When I try to delete a recording I get a seg fault. Using my limited
> debugging skills (writing text to std out) I found that in
> playbackbox.cpp:
>
> void PlaybackBox::remove(QListViewItem *lvitem)
> {
>     killPlayer();
> -----It dies right here.
>
>
> killPlayer() seems to complete, but it dies before :
>
> ProgramListItem *pgitem = (ProgramListItem *)lvitem;

Recompile for debugging (edit settings.pro), run it in gdb, and find out where 
it's really crashing -- it's another thread that's doing the dying, 
apparently.

Isaac