1
0
mirror of https://github.com/DigitalDevices/pvr.octonet.git synced 2023-10-10 13:36:57 +02:00

client: Clear incoming signalStatus before filling it

This commit is contained in:
Dennis Hamester 2016-11-10 17:18:45 +01:00
parent 5fc6fc2ebc
commit ba7e50e79c

View File

@ -271,6 +271,7 @@ bool SwitchChannel(const PVR_CHANNEL& channel) {
}
PVR_ERROR SignalStatus(PVR_SIGNAL_STATUS& signalStatus) {
memset(&signalStatus, 0, sizeof(PVR_SIGNAL_STATUS));
rtsp_fill_signal_status(signalStatus);
return PVR_ERROR_NO_ERROR;
}