2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2001-10-25 19:48:08 +05:30
|
|
|
/*
|
2006-07-12 13:26:04 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-10-25 19:48:08 +05:30
|
|
|
*/
|
|
|
|
|
2002-09-25 08:17:48 +05:30
|
|
|
#include "libbb.h"
|
2002-11-03 19:35:15 +05:30
|
|
|
#include "unarchive.h"
|
2001-10-25 19:48:08 +05:30
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
void FAST_FUNC seek_by_jump(const archive_handle_t *archive_handle, unsigned amount)
|
2001-10-25 19:48:08 +05:30
|
|
|
{
|
2008-07-20 22:40:43 +05:30
|
|
|
if (amount
|
|
|
|
&& lseek(archive_handle->src_fd, (off_t) amount, SEEK_CUR) == (off_t) -1
|
|
|
|
) {
|
2008-04-05 08:14:30 +05:30
|
|
|
if (errno == ESPIPE)
|
2006-10-08 18:19:22 +05:30
|
|
|
seek_by_read(archive_handle, amount);
|
2008-04-05 08:14:30 +05:30
|
|
|
else
|
2006-10-20 18:58:22 +05:30
|
|
|
bb_perror_msg_and_die("seek failure");
|
2001-10-25 19:48:08 +05:30
|
|
|
}
|
2002-07-11 16:41:56 +05:30
|
|
|
}
|