Commit 3a27b5c8 authored by marko's avatar marko

branches/zip: page_zip_decompress(): Initialize page_zip->n_blobs before

referencing it, to prevent a ut_ad() assertion on page_zip_get_trailer_len()
from failing.  Promote that assertion to ut_a().
parent a9e75e63
......@@ -1860,6 +1860,7 @@ page_zip_decompress_low(
/* The dense directory excludes the infimum and supremum records. */
n_dense = page_dir_get_n_heap(page) - 2;
page_zip->n_blobs = 0;
page_zip->m_start = PAGE_DATA + d_stream.total_in;
/* Apply the modification log. */
......@@ -1874,7 +1875,7 @@ page_zip_decompress_low(
goto err_exit;
}
page_zip->m_end = mod_log_ptr - page_zip->data;
ut_ad(page_zip_get_trailer_len(page_zip, index, NULL)
ut_a(page_zip_get_trailer_len(page_zip, index, NULL)
+ page_zip->m_end < page_zip->size);
}
......@@ -1888,7 +1889,6 @@ page_zip_decompress_low(
/* Copy the uncompressed fields. */
page_zip->n_blobs = 0;
storage = page_zip->data + page_zip->size
- n_dense * PAGE_ZIP_DIR_SLOT_SIZE;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment