aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archival/libarchive/open_transformer.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/archival/libarchive/open_transformer.c b/archival/libarchive/open_transformer.c
index a3018d9ec..ac7e5db95 100644
--- a/archival/libarchive/open_transformer.c
+++ b/archival/libarchive/open_transformer.c
@@ -331,6 +331,9 @@ void* FAST_FUNC xmalloc_open_zipped_read_close(const char *fname, size_t *maxsz_
331 } 331 }
332 } else { 332 } else {
333 /* File is not compressed */ 333 /* File is not compressed */
334//FIXME: avoid seek
335 xlseek(xstate->src_fd, - xstate->signature_skipped, SEEK_CUR);
336 xstate->signature_skipped = 0;
334 image = xmalloc_read(xstate->src_fd, maxsz_p); 337 image = xmalloc_read(xstate->src_fd, maxsz_p);
335 } 338 }
336 339