Version 1.2.6pre6

- Fixed handling Priority -1 in cDvbDevice::ProvidesChannel() (thanks to
  Torsten Herz).
- Fixed processing EPG data in case there is no title (thanks to Torsten Herz).
This commit is contained in:
Klaus Schmidinger
2003-11-09 18:00:00 +01:00
parent 17c5b4169e
commit 0b283547ac
6 changed files with 14 additions and 8 deletions

View File

@@ -118,7 +118,6 @@ struct LIST *createVdrProgramInfos (unsigned char *siBuffer)
AddItemToText (Item->Text,
VdrProgramInfo->ExtendedText);
}
GotVdrProgramInfo = 1;
}
break;
@@ -134,7 +133,6 @@ struct LIST *createVdrProgramInfos (unsigned char *siBuffer)
VdrProgramInfo->ContentNibble2 =
GetContentContentNibble2(Descriptor, j);
}
GotVdrProgramInfo = 1;
}
break;
@@ -147,12 +145,12 @@ struct LIST *createVdrProgramInfos (unsigned char *siBuffer)
if (!strncmp (VdrProgramInfo->LanguageCode,
Rating->LanguageCode, 3))
VdrProgramInfo->Rating = Rating->Rating;
GotVdrProgramInfo = 1;
}
break;
}
}
if (GotVdrProgramInfo) xAddTail (Result, VdrProgramInfo);
else xMemFree (VdrProgramInfo);
}
return (Result);