[mythtv] Re: seg fault with mythfilldatabase
Neil McCurdy
nemccurd at cs.ucsd.edu
Mon Feb 10 14:14:36 EST 2003
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
More information about the mythtv-dev
mailing list