Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
3116e7ca
Commit
3116e7ca
authored
Nov 10, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5762
parent
c3d7919c
Changes
5
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
3116e7ca
...
...
@@ -2,6 +2,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.13 Engineering
Fixed liblutil hex conversion (ITS#5699)
Fixed libldap error code return (ITS#5762)
Added slapd dn.this ACL limits (ITS#5734)
Fixed slapd nameUIDPretty bitstring parsing (ITS#5750)
Fixed slapd overlay/database open with real structure (ITS#5724)
...
...
libraries/libldap/pagectrl.c
View file @
3116e7ca
/* $OpenLDAP$ */
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
* Copyright 1998-2008 The OpenLDAP Foundation.
...
...
@@ -71,6 +72,7 @@ ldap_create_page_control_value(
value
->
bv_val
=
NULL
;
value
->
bv_len
=
0
;
ld
->
ld_errno
=
LDAP_SUCCESS
;
if
(
cookie
==
NULL
)
{
cookie
=
&
null_cookie
;
...
...
libraries/libldap/sortctrl.c
View file @
3116e7ca
...
...
@@ -304,6 +304,7 @@ ldap_create_sort_control_value(
value
->
bv_val
=
NULL
;
value
->
bv_len
=
0
;
ld
->
ld_errno
=
LDAP_SUCCESS
;
ber
=
ldap_alloc_ber_with_options
(
ld
);
if
(
ber
==
NULL
)
{
...
...
libraries/libldap/stctrl.c
View file @
3116e7ca
...
...
@@ -60,6 +60,7 @@ param_error:;
}
assert
(
LDAP_VALID
(
ld
)
);
ld
->
ld_errno
=
LDAP_SUCCESS
;
/* check sizes according to I.D. */
if
(
sessionSourceIp
==
NULL
)
{
...
...
libraries/libldap/vlvctrl.c
View file @
3116e7ca
...
...
@@ -101,6 +101,7 @@ ldap_create_vlv_control_value(
value
->
bv_val
=
NULL
;
value
->
bv_len
=
0
;
ld
->
ld_errno
=
LDAP_SUCCESS
;
ber
=
ldap_alloc_ber_with_options
(
ld
);
if
(
ber
==
NULL
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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