Commit c2505f9b authored by marko's avatar marko

branches/zip: page_zip_decompress_node_ptrs(): Remove the local variable

is_clust, to avoid a warning about unused variable when the definition
of page_zip_fail() is empty.
parent 3802ff3f
......@@ -2085,15 +2085,14 @@ page_zip_decompress_node_ptrs(
(page_zip_get_trailer_len(page_zip,
dict_index_is_clust(index), NULL)
+ page_zip->m_end >= page_zip_get_size(page_zip))) {
ulint is_clust = dict_index_is_clust(index);
page_zip_fail(("page_zip_decompress_node_ptrs:"
" %lu + %lu >= %lu, %lu\n",
(ulong) page_zip_get_trailer_len(
page_zip, is_clust, NULL),
page_zip, dict_index_is_clust(index),
NULL),
(ulong) page_zip->m_end,
(ulong) page_zip_get_size(page_zip),
(ulong) is_clust));
(ulong) dict_index_is_clust(index)));
return(FALSE);
}
......
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