diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2010-02-28 13:36:26 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2010-02-28 13:36:26 +0100 |
commit | 7506867fbe30b772c025ef8dc29cba3d4ec65b7f (patch) | |
tree | 0393bf16598f0c4929de21334dccbf34f1fe29f5 /tools.c | |
parent | cdea3827d3c35154da0522e55b3729a4de2ebd0f (diff) | |
download | vdr-7506867fbe30b772c025ef8dc29cba3d4ec65b7f.tar.gz vdr-7506867fbe30b772c025ef8dc29cba3d4ec65b7f.tar.bz2 |
cSafeFile::Close() now flushes the file
Diffstat (limited to 'tools.c')
-rw-r--r-- | tools.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: tools.c 2.6 2009/12/23 15:12:15 kls Exp $ + * $Id: tools.c 2.7 2010/02/28 13:31:46 kls Exp $ */ #include "tools.h" @@ -1423,6 +1423,8 @@ bool cSafeFile::Close(void) LOG_ERROR_STR(tempName); result = false; } + fflush(f); + fsync(fileno(f)); if (fclose(f) < 0) { LOG_ERROR_STR(tempName); result = false; |