Commit 46b7cec1 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 186a5e9d
...@@ -3427,7 +3427,7 @@ btr_cur_mark_dtuple_inherited_extern( ...@@ -3427,7 +3427,7 @@ btr_cur_mark_dtuple_inherited_extern(
{ {
ulint i; 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); dfield_t* dfield = dtuple_get_nth_field(entry, i);
byte* data; 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