From 3d5dd25c62114875146d4d4e09a58060789546c7 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Fri, 16 Feb 2007 17:15:24 +0000 Subject: [PATCH] remove unneeded voodoo --- lib/dvb/epgcache.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/dvb/epgcache.cpp b/lib/dvb/epgcache.cpp index acdc9a9d..6c98011b 100644 --- a/lib/dvb/epgcache.cpp +++ b/lib/dvb/epgcache.cpp @@ -861,11 +861,10 @@ void eEPGCache::thread() void eEPGCache::load() { - unlink("/hdd/epg.dat.$$$"); - rename("/hdd/epg.dat", "/hdd/epg.dat.$$$"); - FILE *f = fopen("/hdd/epg.dat.$$$", "r"); + FILE *f = fopen("/hdd/epg.dat", "r"); if (f) { + unlink("/hdd/epg.dat"); int size=0; int cnt=0; #if 0 @@ -893,7 +892,6 @@ void eEPGCache::load() { eDebug("[EPGC] epg file has incorrect byte order.. dont read it"); fclose(f); - unlink("/hdd/epg.dat.$$$"); return; } char text1[13]; @@ -972,7 +970,6 @@ void eEPGCache::load() fclose(f); } } - unlink("/hdd/epg.dat.$$$"); } void eEPGCache::save() -- 2.30.2