mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed a problem with accessing the epg.data file before it is fully written
This commit is contained in:
parent
7babc1034e
commit
cb0e6f1b14
@ -186,6 +186,7 @@ Norbert Schmidt <nschmidt-nrw@t-online.de>
|
|||||||
|
|
||||||
Thilo Wunderlich <tw@ubcom.net>
|
Thilo Wunderlich <tw@ubcom.net>
|
||||||
for his help in keeping 'channels.conf' up to date
|
for his help in keeping 'channels.conf' up to date
|
||||||
|
for reporting a problem with accessing the epg.data file before it is fully written
|
||||||
|
|
||||||
Stephan Schreiber <stephan@sschreiber.de>
|
Stephan Schreiber <stephan@sschreiber.de>
|
||||||
for his support in keeping the Premiere World channels up to date in 'channels.conf.cable'
|
for his support in keeping the Premiere World channels up to date in 'channels.conf.cable'
|
||||||
|
2
HISTORY
2
HISTORY
@ -1180,3 +1180,5 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed resetting the "First day" timer parameter once the timer actually starts
|
- Fixed resetting the "First day" timer parameter once the timer actually starts
|
||||||
recording.
|
recording.
|
||||||
- Fixed the still picture workaround in case the progress display is active.
|
- Fixed the still picture workaround in case the progress display is active.
|
||||||
|
- Fixed a problem with accessing the epg.data file before it is fully written
|
||||||
|
(thanks to Thilo Wunderlich for reporting this one).
|
||||||
|
8
eit.c
8
eit.c
@ -16,7 +16,7 @@
|
|||||||
* the Free Software Foundation; either version 2 of the License, or *
|
* the Free Software Foundation; either version 2 of the License, or *
|
||||||
* (at your option) any later version. *
|
* (at your option) any later version. *
|
||||||
* *
|
* *
|
||||||
* $Id: eit.c 1.42 2002/04/01 12:58:20 kls Exp $
|
* $Id: eit.c 1.43 2002/04/06 11:42:47 kls Exp $
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "eit.h"
|
#include "eit.h"
|
||||||
@ -1090,10 +1090,10 @@ void cSIProcessor::Action()
|
|||||||
if (epgDataFileName && now - lastDump > 600)
|
if (epgDataFileName && now - lastDump > 600)
|
||||||
{
|
{
|
||||||
cMutexLock MutexLock(&schedulesMutex);
|
cMutexLock MutexLock(&schedulesMutex);
|
||||||
FILE *f = fopen(GetEpgDataFileName(), "w");
|
cSafeFile f(GetEpgDataFileName());
|
||||||
if (f) {
|
if (f.Open()) {
|
||||||
schedules->Dump(f);
|
schedules->Dump(f);
|
||||||
fclose(f);
|
f.Close();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
LOG_ERROR;
|
LOG_ERROR;
|
||||||
|
Loading…
Reference in New Issue
Block a user