summaryrefslogtreecommitdiffstats
path: root/lib/libarchive
diff options
context:
space:
mode:
authormm <mm@FreeBSD.org>2011-09-02 13:03:56 +0000
committermm <mm@FreeBSD.org>2011-09-02 13:03:56 +0000
commit7bd40e8719efd852ad215cce301657b1a028ba33 (patch)
treeb6dffbc41abc290219daa5c1a2a249bcb97a9886 /lib/libarchive
parent29f67d2bd349cdaacfc425de53eb6630d894b64a (diff)
downloadFreeBSD-src-7bd40e8719efd852ad215cce301657b1a028ba33.zip
FreeBSD-src-7bd40e8719efd852ad215cce301657b1a028ba33.tar.gz
Import additional bugfix for reading and extracting makefs-created
ISO images with tar. Vendor revision 3648 (merge of 3647): Additional fix to issue 168 because the change of r3642 was not sufficient. - Make sure "CL" entry appear after its "RE" entry which the "CL" entry should be connected with. - Give consideration to the case that the top level "RE" entry has already been exposed outside before its tree. Approved by: re (kib) Obtained from: libarchive (release/2.8, svn rev 3648) MFC after: 3 days
Diffstat (limited to 'lib/libarchive')
-rw-r--r--lib/libarchive/archive_read_support_format_iso9660.c22
1 files changed, 14 insertions, 8 deletions
diff --git a/lib/libarchive/archive_read_support_format_iso9660.c b/lib/libarchive/archive_read_support_format_iso9660.c
index 3882f85..0216461 100644
--- a/lib/libarchive/archive_read_support_format_iso9660.c
+++ b/lib/libarchive/archive_read_support_format_iso9660.c
@@ -1815,8 +1815,11 @@ parse_file_info(struct archive_read *a, struct file_info *parent,
file->re_descendant = 1;
if (file->cl_offset != 0) {
parent->subdirs++;
- /* To be appeared before other dirs. */
- file->offset = file->number = file->cl_offset;
+ /* Overwrite an offset and a number of this "CL" entry
+ * to appear before other dirs. "+1" to those is to
+ * make sure to appear after "RE" entry which this
+ * "CL" entry should be connected with. */
+ file->offset = file->number = file->cl_offset + 1;
}
}
@@ -2581,13 +2584,16 @@ next_cache_entry(struct archive_read *a, struct iso9660 *iso9660,
continue;
} else if (file->re_descendant) {
/*
- * Do not expose this at this time
- * because we have not gotten its full-path
- * name yet.
+ * If the top level "RE" entry of this entry
+ * is not exposed, we, accordingly, should not
+ * expose this entry at this time because
+ * we cannot make its proper full-path name.
*/
- if (rede_add_entry(file) < 0)
- goto fatal_rr;
- continue;
+ if (rede_add_entry(file) == 0)
+ continue;
+ /* Otherwise we can expose this entry because
+ * it seems its top level "RE" has already been
+ * exposed. */
}
}
break;
OpenPOWER on IntegriCloud