From 4d8cdbdab44400fd98f0f18a0f701e27cd1acdae Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Wed, 23 Jan 2008 13:13:58 +0200 Subject: Fix the fix 863028cb7ad6d8d0455fa69348f56b376d7b908f which just moved to problem. Now it's really fixed. --- src/liblzma/common/info.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/liblzma/common/info.c b/src/liblzma/common/info.c index aee25463..b05bd031 100644 --- a/src/liblzma/common/info.c +++ b/src/liblzma/common/info.c @@ -385,7 +385,10 @@ lzma_info_metadata_set(lzma_info *info, lzma_allocator *allocator, const lzma_ret ret = lzma_info_index_set( info, allocator, metadata->index, eat_index); - metadata->index = NULL; + + if (eat_index) + metadata->index = NULL; + if (ret != LZMA_OK) return ret; -- cgit v1.2.3