summaryrefslogtreecommitdiff
path: root/methods
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2011-02-14 17:03:35 +0100
committerDavid Kalnischkies <kalnischkies@gmail.com>2011-02-14 17:03:35 +0100
commit2a79d5b560398427f5538865099b6777128d8bed (patch)
treed66c24f537044f755fdd6f4a4af862f9bd6029d6 /methods
parent94244f75f8280c9b4018736d503d17455c284b2d (diff)
* apt-pkg/contrib/fileutl.cc:
- really detect bigendian machines by including config.h, so we can really (Closes: #612986) * apt-pkg/contrib/mmap.cc: - Base has as 'valid' failure states 0 and -1 so add a simple validData method to check for failure states
Diffstat (limited to 'methods')
-rw-r--r--methods/rred.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/rred.cc b/methods/rred.cc
index 9ad0e4464..849973e1a 100644
--- a/methods/rred.cc
+++ b/methods/rred.cc
@@ -256,7 +256,7 @@ RredMethod::State RredMethod::patchMMap(FileFd &Patch, FileFd &From, /*{{{*/
if (Patch.gzFd() != NULL) {
unsigned long mapSize = Patch.Size();
DynamicMMap* dyn = new DynamicMMap(0, mapSize, 0);
- if (dyn->Data() == 0) {
+ if (dyn->validData() == false) {
delete dyn;
return MMAP_FAILED;
}