Fix the fix 863028cb7a which

just moved to problem. Now it's really fixed.
This commit is contained in:
Lasse Collin 2008-01-23 13:13:58 +02:00
parent 67321de963
commit 4d8cdbdab4
1 changed files with 4 additions and 1 deletions

View File

@ -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;