aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2009-07-20 15:43:32 +0300
committerLasse Collin <lasse.collin@tukaani.org>2009-07-20 15:43:32 +0300
commit8f8ec942d6d21ada2096eaf063411bc8bc7e2d48 (patch)
tree366c83d53a47ca46b3cd8b67eb546f16f4f9c268 /src
parentMajor documentation update. (diff)
downloadxz-8f8ec942d6d21ada2096eaf063411bc8bc7e2d48.tar.xz
Avoid internal error with --format=xz --lzma1.
Diffstat (limited to 'src')
-rw-r--r--src/xz/coder.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/src/xz/coder.c b/src/xz/coder.c
index 90c99271..7cf6186f 100644
--- a/src/xz/coder.c
+++ b/src/xz/coder.c
@@ -151,12 +151,20 @@ coder_set_compression_settings(void)
// Terminate the filter options array.
filters[filters_count].id = LZMA_VLI_UNKNOWN;
- // If we are using the LZMA_Alone format, allow exactly one filter
- // which has to be LZMA.
+ // If we are using the .lzma format, allow exactly one filter
+ // which has to be LZMA1.
if (opt_format == FORMAT_LZMA && (filters_count != 1
|| filters[0].id != LZMA_FILTER_LZMA1))
- message_fatal(_("With --format=lzma only the LZMA1 filter "
- "is supported"));
+ message_fatal(_("The .lzma format supports only "
+ "the LZMA1 filter"));
+
+ // If we are using the .xz format, make sure that there is no LZMA1
+ // filter to prevent LZMA_PROG_ERROR.
+ if (opt_format == FORMAT_XZ)
+ for (size_t i = 0; i < filters_count; ++i)
+ if (filters[i].id == LZMA_FILTER_LZMA1)
+ message_fatal(_("LZMA1 cannot be used "
+ "with the .xz format"));
// Print the selected filter chain.
message_filters(V_DEBUG, filters);