diff options
author | pixel <pixel> | 2003-03-08 02:47:13 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-03-08 02:47:13 +0000 |
commit | 6f42565fe267a17221fa024cab35fde48a83947d (patch) | |
tree | c9f1e28f29a6bfd0bbc94f290875310b68d7b2b6 | |
parent | f67f29b2c797d9728fac7f26f68ccc05abab6178 (diff) |
Archives bug...
-rw-r--r-- | lib/Input.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Input.cc b/lib/Input.cc index c26fba6..f246f73 100644 --- a/lib/Input.cc +++ b/lib/Input.cc @@ -90,7 +90,7 @@ Input::Input(const String & no) throw (GeneralException) : seek(0, SEEK_SET); } } else { -// size = results.size; + size = results.size; seek(results.ptr, SEEK_SET); size = readU32(); date_modif = 0; @@ -160,6 +160,7 @@ int Input::wrapopen(const String & fname, openresults_t * results) { return Archive::open(fname, results); } } + results->name = ""; return open(fname.to_charp(), O_RDONLY); } |