Commit f7bf6fec authored by marko's avatar marko

branches/zip: btr_cur_mark_dtuple_inherited_extern(): Fix the loop condition

that was broken in r1591.  Spotted by Heikki and Vasil.
parent 278334e0
......@@ -3427,7 +3427,7 @@ btr_cur_mark_dtuple_inherited_extern(
{
ulint i;
for (i = 0; dtuple_get_n_fields(entry); i++) {
for (i = 0; i < dtuple_get_n_fields(entry); i++) {
dfield_t* dfield = dtuple_get_nth_field(entry, i);
byte* data;
......
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