diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-03-22 20:18:49 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-03-22 23:30:28 +0100 |
commit | 377112c6c1b307023265706b1848fb0952fd809c (patch) | |
tree | 4743a9dd4601dfcd5946460380c2dba215f28d81 /unpack/rdsquashfs.c | |
parent | 3fd6b0a8e02e1ca50bd03691f404f343995d2ed6 (diff) |
Do not try to read back the compressor options
None of the currently implemented compressors do anything with that data.
They are all at the mercy of the data actually in the image.
This commit removes the code from sqfs2tar and rdsquashfs that decodes
the options, which also has the side effect of increasing compatibillity
with some non-confirming images.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'unpack/rdsquashfs.c')
-rw-r--r-- | unpack/rdsquashfs.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/unpack/rdsquashfs.c b/unpack/rdsquashfs.c index c166f4a..fa2bbb4 100644 --- a/unpack/rdsquashfs.c +++ b/unpack/rdsquashfs.c @@ -51,15 +51,6 @@ int main(int argc, char **argv) goto out_file; } - if (super.flags & SQFS_FLAG_COMPRESSOR_OPTIONS) { - ret = cmp->read_options(cmp, file); - if (ret) { - sqfs_perror(opt.image_name, "reading compressor " - "options", ret); - goto out_cmp; - } - } - if (!(super.flags & SQFS_FLAG_NO_XATTRS)) { xattr = sqfs_xattr_reader_create(0); if (xattr == NULL) { |