Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
122afcff
Commit
122afcff
authored
May 18, 2015
by
Howard Chu
Committed by
Quanah Gibson-Mount
May 27, 2015
Browse files
ITS#8146 tweak prev commit
Test less likely condition first
parent
0cc9993e
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/back-mdb/filterindex.c
View file @
122afcff
...
...
@@ -211,7 +211,7 @@ mdb_filter_candidates(
/* Must not return NULL, otherwise extended filters break */
MDB_IDL_ALL
(
ids
);
}
if
(
MDB_IDL_IS_RANGE
(
ids
)
&&
ids
[
2
]
==
NOID
)
{
if
(
ids
[
2
]
==
NOID
&&
MDB_IDL_IS_RANGE
(
ids
))
{
struct
mdb_info
*
mdb
=
(
struct
mdb_info
*
)
op
->
o_bd
->
be_private
;
ID
last
;
...
...
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