Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
orbea -
OpenLDAP
Commits
6a1ee5fe
Commit
6a1ee5fe
authored
Jan 12, 2017
by
Howard Chu
Browse files
Fix
f8ce8a82
GET_MULTIPLE was broken
parent
65b4c49d
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/liblmdb/mdb.c
View file @
6a1ee5fe
...
...
@@ -6345,10 +6345,9 @@ mdb_cursor_get(MDB_cursor *mc, MDB_val *key, MDB_val *data,
rc
=
MDB_INCOMPATIBLE
;
break
;
}
if
(
!
(
mc
->
mc_xcursor
->
mx_cursor
.
mc_flags
&
C_INITIALIZED
))
{
rc
=
EINVAL
;
rc
=
MDB_SUCCESS
;
if
(
!
(
mc
->
mc_xcursor
->
mx_cursor
.
mc_flags
&
C_INITIALIZED
))
break
;
}
if
(
mc
->
mc_xcursor
->
mx_cursor
.
mc_flags
&
C_EOF
)
{
MDB_cursor
*
mx
=
&
mc
->
mc_xcursor
->
mx_cursor
;
if
(
mx
->
mc_ki
[
mx
->
mc_top
]
>=
NUMKEYS
(
mx
->
mc_pg
[
mx
->
mc_top
])
-
1
)
{
...
...
@@ -6357,7 +6356,6 @@ mdb_cursor_get(MDB_cursor *mc, MDB_val *key, MDB_val *data,
}
mx
->
mc_flags
^=
C_EOF
;
}
rc
=
MDB_SUCCESS
;
goto
fetchm
;
case
MDB_NEXT_MULTIPLE
:
if
(
data
==
NULL
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment