|
|
@ -7130,10 +7130,9 @@ mdb_cursor_get(MDB_cursor *mc, MDB_val *key, MDB_val *data, |
|
|
|
rc = MDB_INCOMPATIBLE; |
|
|
|
rc = MDB_INCOMPATIBLE; |
|
|
|
break; |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
if (!(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED)) { |
|
|
|
rc = MDB_SUCCESS; |
|
|
|
rc = EINVAL; |
|
|
|
if (!(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED)) |
|
|
|
break; |
|
|
|
break; |
|
|
|
} |
|
|
|
|
|
|
|
if (mc->mc_xcursor->mx_cursor.mc_flags & C_EOF) { |
|
|
|
if (mc->mc_xcursor->mx_cursor.mc_flags & C_EOF) { |
|
|
|
MDB_cursor *mx = &mc->mc_xcursor->mx_cursor; |
|
|
|
MDB_cursor *mx = &mc->mc_xcursor->mx_cursor; |
|
|
|
if (mx->mc_ki[mx->mc_top] >= NUMKEYS(mx->mc_pg[mx->mc_top])-1) { |
|
|
|
if (mx->mc_ki[mx->mc_top] >= NUMKEYS(mx->mc_pg[mx->mc_top])-1) { |
|
|
@ -7142,7 +7141,6 @@ mdb_cursor_get(MDB_cursor *mc, MDB_val *key, MDB_val *data, |
|
|
|
} |
|
|
|
} |
|
|
|
mx->mc_flags ^= C_EOF; |
|
|
|
mx->mc_flags ^= C_EOF; |
|
|
|
} |
|
|
|
} |
|
|
|
rc = MDB_SUCCESS; |
|
|
|
|
|
|
|
goto fetchm; |
|
|
|
goto fetchm; |
|
|
|
case MDB_NEXT_MULTIPLE: |
|
|
|
case MDB_NEXT_MULTIPLE: |
|
|
|
if (data == NULL) { |
|
|
|
if (data == NULL) { |
|
|
|