mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Clarified some potentially mistakable code in cSectionHandler::SetStatus()
This commit is contained in:
parent
50c3951017
commit
2a0222226a
@ -3617,6 +3617,7 @@ Onur Sent
|
|||||||
for fixing handling shared CA pids
|
for fixing handling shared CA pids
|
||||||
for fixing handling the S2SatelliteDeliverySystemDescriptor for transponders broadcasting
|
for fixing handling the S2SatelliteDeliverySystemDescriptor for transponders broadcasting
|
||||||
in "backwards compatibility mode" according to ETSI EN 300 468
|
in "backwards compatibility mode" according to ETSI EN 300 468
|
||||||
|
for pointing out some potentially mistakable code in cSectionHandler::SetStatus()
|
||||||
|
|
||||||
Helmut Binder <cco@aon.at>
|
Helmut Binder <cco@aon.at>
|
||||||
for improving calculating signal strength and quality
|
for improving calculating signal strength and quality
|
||||||
|
4
HISTORY
4
HISTORY
@ -9766,7 +9766,7 @@ Video Disk Recorder Revision History
|
|||||||
(reported by Timo Weingärtner).
|
(reported by Timo Weingärtner).
|
||||||
- Official release.
|
- Official release.
|
||||||
|
|
||||||
2022-01-24:
|
2022-01-31:
|
||||||
|
|
||||||
- Replaced strncpy() with memcpy() in strreplace() to avoid a compiler warning
|
- Replaced strncpy() with memcpy() in strreplace() to avoid a compiler warning
|
||||||
(reported by Marco Mäkelä).
|
(reported by Marco Mäkelä).
|
||||||
@ -9776,3 +9776,5 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed handling zero bytes in cH264Parser (thanks to Christoph Haubrich).
|
- Fixed handling zero bytes in cH264Parser (thanks to Christoph Haubrich).
|
||||||
- Fixed handling error conditions in the index file (reported by Markus Ehrnsperger).
|
- Fixed handling error conditions in the index file (reported by Markus Ehrnsperger).
|
||||||
- Fixed a possible deadlock in cDevice::DetachAllReceivers() (thanks to Helmut Binder).
|
- Fixed a possible deadlock in cDevice::DetachAllReceivers() (thanks to Helmut Binder).
|
||||||
|
- Clarified some potentially mistakable code in cSectionHandler::SetStatus() (pointed
|
||||||
|
out by Onur Sentürk).
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: sections.c 5.2 2021/06/20 10:27:19 kls Exp $
|
* $Id: sections.c 5.3 2022/01/31 21:21:42 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "sections.h"
|
#include "sections.h"
|
||||||
@ -155,7 +155,8 @@ void cSectionHandler::SetStatus(bool On)
|
|||||||
if (On)
|
if (On)
|
||||||
fi->SetStatus(true);
|
fi->SetStatus(true);
|
||||||
}
|
}
|
||||||
if (flush = On)
|
flush = On;
|
||||||
|
if (flush)
|
||||||
flushTimer.Set();
|
flushTimer.Set();
|
||||||
on = On;
|
on = On;
|
||||||
waitForLock = false;
|
waitForLock = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user