mirror of
https://github.com/sheumann/hush.git
synced 2025-01-14 12:30:40 +00:00
unzip: try lseek before resorting to reading
function old new delta unzip_skip 16 43 +27 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
bac9f03ed8
commit
f3b56b428f
@ -208,7 +208,8 @@ static uint32_t read_next_cds(int count_m1, uint32_t cds_offset, cds_header_t *c
|
|||||||
|
|
||||||
static void unzip_skip(off_t skip)
|
static void unzip_skip(off_t skip)
|
||||||
{
|
{
|
||||||
bb_copyfd_exact_size(zip_fd, -1, skip);
|
if (lseek(zip_fd, skip, SEEK_CUR) == (off_t)-1)
|
||||||
|
bb_copyfd_exact_size(zip_fd, -1, skip);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void unzip_create_leading_dirs(const char *fn)
|
static void unzip_create_leading_dirs(const char *fn)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user