mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 07:23:09 +02:00
fix copy, suppemnent to last commit
This commit is contained in:
@@ -1577,14 +1577,14 @@ void CInfoViewer::sendNoEpg(const t_channel_id for_channel_id)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void copy_info(CSectionsdClient::CurrentNextInfo _info, CSectionsdClient::CurrentNextInfo _oldinfo)
|
void copy_info(CSectionsdClient::CurrentNextInfo *_info, CSectionsdClient::CurrentNextInfo *_oldinfo)
|
||||||
{
|
{
|
||||||
_oldinfo.current_uniqueKey = _info.current_uniqueKey;
|
_oldinfo->current_uniqueKey = _info->current_uniqueKey;
|
||||||
_oldinfo.current_name = _info.current_name;
|
_oldinfo->current_name = _info->current_name;
|
||||||
_oldinfo.current_fsk = _info.current_fsk;
|
_oldinfo->current_fsk = _info->current_fsk;
|
||||||
_oldinfo.next_uniqueKey = _info.next_uniqueKey;
|
_oldinfo->next_uniqueKey = _info->next_uniqueKey;
|
||||||
_oldinfo.next_name = _info.next_name;
|
_oldinfo->next_name = _info->next_name;
|
||||||
_oldinfo.flags = _info.flags;
|
_oldinfo->flags = _info->flags;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CInfoViewer::getEPG(const t_channel_id for_channel_id, CSectionsdClient::CurrentNextInfo &info)
|
void CInfoViewer::getEPG(const t_channel_id for_channel_id, CSectionsdClient::CurrentNextInfo &info)
|
||||||
@@ -1600,7 +1600,7 @@ void CInfoViewer::getEPG(const t_channel_id for_channel_id, CSectionsdClient::Cu
|
|||||||
|
|
||||||
/* of there is no EPG, send an event so that parental lock can work */
|
/* of there is no EPG, send an event so that parental lock can work */
|
||||||
if (info.current_uniqueKey == 0 && info.next_uniqueKey == 0) {
|
if (info.current_uniqueKey == 0 && info.next_uniqueKey == 0) {
|
||||||
copy_info(info,oldinfo);
|
copy_info(&info,&oldinfo);
|
||||||
sendNoEpg(for_channel_id);
|
sendNoEpg(for_channel_id);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -1620,7 +1620,7 @@ void CInfoViewer::getEPG(const t_channel_id for_channel_id, CSectionsdClient::Cu
|
|||||||
else
|
else
|
||||||
msg = NeutrinoMessages::EVT_NOEPG_YET;
|
msg = NeutrinoMessages::EVT_NOEPG_YET;
|
||||||
g_RCInput->postMsg(msg, (const neutrino_msg_data_t)p, false); // data is pointer to allocated memory
|
g_RCInput->postMsg(msg, (const neutrino_msg_data_t)p, false); // data is pointer to allocated memory
|
||||||
copy_info(info,oldinfo);
|
copy_info(&info,&oldinfo);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user