Closed skull-squadron closed 10 years ago
When dataForEntry: succeeds, it will always report an error if the error argument is used, unless the size of the file is zero.
dataForEntry:
The problem is that the error condition test in dataForEntry: needs to be (error && unz_err < 0), not just (error).
(error && unz_err < 0)
(error)
When
dataForEntry:
succeeds, it will always report an error if the error argument is used, unless the size of the file is zero.The problem is that the error condition test in
dataForEntry:
needs to be(error && unz_err < 0)
, not just(error)
.