diff options
author | Julian Andres Klode <jak@debian.org> | 2016-11-14 16:24:25 +0100 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2016-11-14 16:24:25 +0100 |
commit | d6af32cc6d58cbccf2578773da67e638934d36fb (patch) | |
tree | 656b1ccf3a9dec26455e4b7f35bb4b89e3a80cff | |
parent | bb05f4e0c4bb91c886bb3ee9965d22ce2a589bb1 (diff) |
Revert "if the FileFd failed already following calls should fail, too"
This reverts commit 1b63558a39ee1eed7eb024cd0e164d73beb165b1.
This commit caused a regression in the unit tests: The error was
propagated to Close(), where we expected it to return true.
-rw-r--r-- | apt-pkg/contrib/fileutl.cc | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index df39ae160..fbf077841 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -2376,7 +2376,7 @@ FileFd::~FileFd() gracefully. */ bool FileFd::Read(void *To,unsigned long long Size,unsigned long long *Actual) { - if (d == nullptr || Failed()) + if (d == nullptr) return false; ssize_t Res = 1; errno = 0; @@ -2427,7 +2427,7 @@ bool FileFd::Read(void *To,unsigned long long Size,unsigned long long *Actual) char* FileFd::ReadLine(char *To, unsigned long long const Size) { *To = '\0'; - if (d == nullptr || Failed()) + if (d == nullptr) return nullptr; return d->InternalReadLine(To, Size); } @@ -2435,8 +2435,6 @@ char* FileFd::ReadLine(char *To, unsigned long long const Size) // FileFd::Flush - Flush the file /*{{{*/ bool FileFd::Flush() { - if (Failed()) - return false; if (d == nullptr) return true; @@ -2446,7 +2444,7 @@ bool FileFd::Flush() // FileFd::Write - Write to the file /*{{{*/ bool FileFd::Write(const void *From,unsigned long long Size) { - if (d == nullptr || Failed()) + if (d == nullptr) return false; ssize_t Res = 1; errno = 0; @@ -2502,7 +2500,7 @@ bool FileFd::Write(int Fd, const void *From, unsigned long long Size) // FileFd::Seek - Seek in the file /*{{{*/ bool FileFd::Seek(unsigned long long To) { - if (d == nullptr || Failed()) + if (d == nullptr) return false; Flags &= ~HitEof; return d->InternalSeek(To); @@ -2511,7 +2509,7 @@ bool FileFd::Seek(unsigned long long To) // FileFd::Skip - Skip over data in the file /*{{{*/ bool FileFd::Skip(unsigned long long Over) { - if (d == nullptr || Failed()) + if (d == nullptr) return false; return d->InternalSkip(Over); } @@ -2519,7 +2517,7 @@ bool FileFd::Skip(unsigned long long Over) // FileFd::Truncate - Truncate the file /*{{{*/ bool FileFd::Truncate(unsigned long long To) { - if (d == nullptr || Failed()) + if (d == nullptr) return false; // truncating /dev/null is always successful - as we get an error otherwise if (To == 0 && FileName == "/dev/null") @@ -2532,7 +2530,7 @@ bool FileFd::Truncate(unsigned long long To) /* */ unsigned long long FileFd::Tell() { - if (d == nullptr || Failed()) + if (d == nullptr) return false; off_t const Res = d->InternalTell(); if (Res == (off_t)-1) @@ -2595,7 +2593,7 @@ time_t FileFd::ModificationTime() unsigned long long FileFd::Size() { if (d == nullptr) - return 0; + return false; return d->InternalSize(); } /*}}}*/ |