aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/common/index.c
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2009-11-25 13:04:10 +0200
committerLasse Collin <lasse.collin@tukaani.org>2009-11-25 13:04:10 +0200
commitbd13b04e202b6f495a68eb0766f97085b7c50a06 (patch)
treefde1e56fec56109775e8722de280a37c09720788 /src/liblzma/common/index.c
parentIndex decoder fixes. (diff)
downloadxz-bd13b04e202b6f495a68eb0766f97085b7c50a06.tar.xz
Fix bugs in lzma_index_read() and lzma_index_cat().
lzma_index_read() didn't skip over Stream Padding if it was the first record in the Index. lzma_index_cat() didn't combine small Indexes correctly. The test suite was updated to check for these bugs. These bugs didn't affect the xz command line tool or most users of liblzma in any way.
Diffstat (limited to 'src/liblzma/common/index.c')
-rw-r--r--src/liblzma/common/index.c30
1 files changed, 19 insertions, 11 deletions
diff --git a/src/liblzma/common/index.c b/src/liblzma/common/index.c
index 46d9ff6e..014abff1 100644
--- a/src/liblzma/common/index.c
+++ b/src/liblzma/common/index.c
@@ -327,16 +327,14 @@ lzma_index_append(lzma_index *i, lzma_allocator *allocator,
/// Initialize i->current to point to the first Record.
+/// Return true if there are no Records.
static bool
init_current(lzma_index *i)
{
- if (i->head == NULL) {
- assert(i->count == 0);
+ if (i->count == 0)
return true;
- }
-
- assert(i->count > 0);
+ assert(i->head != NULL);
i->current.group = i->head;
i->current.record = 0;
i->current.stream_offset = LZMA_STREAM_HEADER_SIZE;
@@ -432,21 +430,31 @@ set_info(const lzma_index *i, lzma_index_record *info)
extern LZMA_API(lzma_bool)
lzma_index_read(lzma_index *i, lzma_index_record *info)
{
+ bool get_next = true;
+
if (i->current.group == NULL) {
// We are at the beginning of the Record list. Set up
- // i->current point at the first Record. Return if there
- // are no Records.
+ // i->current to point at the first Record. Return if
+ // there are no Records.
if (init_current(i))
return true;
- } else do {
- // Try to go the next Record.
+
+ // This is the first Record. We don't need to look for the
+ // next Record unless this one is Stream Padding.
+ get_next = false;
+ }
+
+ // Find the next Record that isn't Stream Padding.
+ while (get_next || i->current.group->paddings[i->current.record]) {
+ get_next = false;
+
if (i->current.record < i->current.group->last)
++i->current.record;
else if (i->current.group->next == NULL)
return true;
else
next_group(i);
- } while (i->current.group->paddings[i->current.record]);
+ }
// We found a new Record. Set the information to *info.
set_info(i, info);
@@ -623,7 +631,7 @@ lzma_index_cat(lzma_index *restrict dest, lzma_index *restrict src,
++dest->tail->last;
// Copy the rest.
- for (size_t i = 1; i < src->head->last; ++i) {
+ for (size_t i = 0; i < src->head->last; ++i) {
dest->tail->unpadded_sums[dest->tail->last + 1]
= vli_ceil4(dest->tail->unpadded_sums[
dest->tail->last])