]> git.saurik.com Git - apt.git/commitdiff
call flush on the wrapped writebuffered FileFd
authorDavid Kalnischkies <david@kalnischkies.de>
Sat, 23 Jul 2016 13:24:46 +0000 (15:24 +0200)
committerDavid Kalnischkies <david@kalnischkies.de>
Sat, 23 Jul 2016 15:23:13 +0000 (17:23 +0200)
The flush call is a no-op in most FileFd implementations so this isn't
as critical as it might sound as the only non-trivial implementation is
in the buffered writer, which tends not be used to buffer another
buffer…

apt-pkg/contrib/fileutl.cc

index fa0930dff9e717a89a587590f304d06afbdab3bc..fc578cd23b1381deb8b4d2f56d51e1daed7d9914 100644 (file)
@@ -1277,9 +1277,8 @@ public:
 
         writebuffer.bufferstart += written;
       }
-
       writebuffer.reset();
-      return true;
+      return wrapped->InternalFlush();
    }
    virtual ssize_t InternalWrite(void const * const From, unsigned long long const Size) APT_OVERRIDE
    {