Ticket #1669: 9671_fix.patch

File 9671_fix.patch, 594 bytes (added by Janne <janne-mythtv@…>, 18 years ago)
  • libs/libmythtv/mpeg/dvbdescriptors.cpp

    === libs/libmythtv/mpeg/dvbdescriptors.cpp
    ==================================================================
     
    129129
    130130QString myth_category_type_to_string(uint category_type)
    131131{
    132     static const char *cattype[] = { "movie", "series", "sports", "tvshow", };
     132    static const char *cattype[] = { "", "movie", "series", "sports", "tvshow", };
    133133
    134134    if ((category_type > kCategoryNone) && (category_type < kCategoryLast))
    135135        return QString(cattype[category_type]);