mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-01 09:51:22 +02:00
satisfy compiler
Signed-off-by: Thilo Graf <dbt@novatux.de> Possible error was: operation on ‘iColon’ may be undefined, possible sequence-point error
This commit is contained in:
@@ -964,8 +964,9 @@ void CBouquetManager::loadWebchannels(int mode)
|
|||||||
if (iColon >= 0 && iComma >= 0 && iComma > iColon)
|
if (iColon >= 0 && iComma >= 0 && iComma > iColon)
|
||||||
{
|
{
|
||||||
iComma++;
|
iComma++;
|
||||||
|
iColon++;
|
||||||
title = strLine.substr(iComma);
|
title = strLine.substr(iComma);
|
||||||
std::string strInfoLine = strLine.substr(++iColon, --iComma - iColon);
|
std::string strInfoLine = strLine.substr(iColon, --iComma - iColon);
|
||||||
desc = ReadMarkerValue(strInfoLine, TVG_INFO_NAME_MARKER);
|
desc = ReadMarkerValue(strInfoLine, TVG_INFO_NAME_MARKER);
|
||||||
group = ReadMarkerValue(strInfoLine, GROUP_NAME_MARKER);
|
group = ReadMarkerValue(strInfoLine, GROUP_NAME_MARKER);
|
||||||
epgid = ReadMarkerValue(strInfoLine, TVG_INFO_ID_MARKER);
|
epgid = ReadMarkerValue(strInfoLine, TVG_INFO_ID_MARKER);
|
||||||
|
Reference in New Issue
Block a user