From: Andreas Monzner Date: Fri, 16 Feb 2007 17:15:24 +0000 (+0000) Subject: remove unneeded voodoo X-Git-Tag: 2.6.0~2401 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/3d5dd25c62114875146d4d4e09a58060789546c7 remove unneeded voodoo --- 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()