Differences From Artifact [03f366c882]:
- File
src/OFZIPArchive.m
— part of check-in
[a847357585]
at
2023-07-26 19:05:36
on branch trunk
— OFZIPArchive: Handle CD spanning multiple parts
Unfortunately, I could not find a file to test this with, as this is an
extremely rare corner case that basically doesn't seem to exist with
real world files: It requires an extremely small part size for an
archive with thousands of files. (user: js, size: 28748) [annotate] [blame] [check-ins using] [more...]
To Artifact [139c2dfeb6]:
- File src/OFZIPArchive.m — part of check-in [94ed4fc6f0] at 2023-10-15 12:55:21 on branch trunk — Make GCC happy again (user: js, size: 28732) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
937 938 939 940 941 942 943 | expectedChecksum: expectedChecksum]; } } return ret; } | | | < | 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 |
expectedChecksum: expectedChecksum];
}
}
return ret;
}
- (bool)lowlevelHasDataInReadBuffer
{
return ((OFStream *)_decompressedStream).hasDataInReadBuffer;
}
- (int)fileDescriptorForReading
{
return ((id <OFReadyForReadingObserving>)_decompressedStream)
.fileDescriptorForReading;
}
|
| ︙ | ︙ |