summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Input.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Input.cc b/lib/Input.cc
index 45a238f..2a6ec2c 100644
--- a/lib/Input.cc
+++ b/lib/Input.cc
@@ -130,13 +130,12 @@ Input::Input(const String & no) throw (GeneralException) :
#ifdef DEBUG
printm(M_INFO, String(_("Opening file in archive, position ")) + results.ptr + "\n");
#endif
- size = results.size;
seek(results.ptr, SEEK_SET);
- size = readU32();
+ _size = readU32();
date_modif = 0;
- SetZ();
fromarchive = true;
itell = 0;
+ SetZ();
}
}