[mythtv] Seg fault when running mythfilldatabase

David Madsen madsend at myrealbox.com
Tue Feb 18 16:24:43 EST 2003


This problem is caused by changes made in the xmltv grabber.  They stopped
supplying endtimes for the showings causing some grief.

The fix was given previously by Neil McCurdy

-- snip--

To resolve, the following change needs to be made to filldata.cpp:

Line ~ 188

In parseProgram:

    if (split.size() > 0)
        pginfo->endts = split[0];
    else
        pginfo->endts = "";

Change to:

    if (split.size() > 0)
        pginfo->endts = split[0];
    else
        pginfo->endts = QString::null;

For some reason "" isn't treated as null.  It looks there are still some
null endtimes being generated by xmltv.

Neil

----- Original Message -----
From: "Tod Detre" <tod at tod.net>
To: "Development of mythtv" <mythtv-dev at snowman.net>
Sent: Tuesday, February 18, 2003 11:19 AM
Subject: Re: [mythtv] Seg fault when running mythfilldatabase


> I am seeing the same thing.
>
> I started with debian/woody and saw it, then moved to debian/sarge. I'm
> not quite sure what the problem is, but I was suspecting I screwed
> something up on install. I was going to move to debian/sid and cvs
> mythtv tonight.
>
>
> On Tuesday, February 18, 2003, at 12:56 PM, Jason M. wrote:
>
> > When I run mythfilldatabase I get a seg fault after it finishes
> > retrieving the first set of show info. I am using the current version
> > of XMLTV, what could be wrong?
> >
> >
> >
> >
> >
> >
> >
> > _________________________________________________________________
> > MSN 8 with e-mail virus protection service: 2 months FREE*
> > http://join.msn.com/?page=features/virus
> >
> > _______________________________________________
> > mythtv-dev mailing list
> > mythtv-dev at snowman.net
> > http://www.snowman.net/mailman/listinfo/mythtv-dev
> >
> --
> Tod Detre
> Unix Support Specialist
> Case Western Reserve University
> unixsupport at po.cwru.edu
> 216-368-3060
>
> _______________________________________________
> mythtv-dev mailing list
> mythtv-dev at snowman.net
> http://www.snowman.net/mailman/listinfo/mythtv-dev
>



More information about the mythtv-dev mailing list