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
2f58faad
Commit
2f58faad
authored
Feb 11, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5315
parent
6dead6e8
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
2f58faad
...
...
@@ -6,6 +6,7 @@ OpenLDAP 2.4.8 Engineering
Fixed libldap filter abort (ITS#5300)
Fixed libldap ldap_parse_sasl_bind_result (ITS#5263)
Fixed libldap search timeout crash (ITS#5291)
Fixed libldap paged results crash (ITS#5315)
Fixed ldapdelete with sizelimit (ITS#5294)
Fixed slapd idlcache on adds (ITS#5086)
Fixed slapd include handling (ITS#5276)
...
...
libraries/libldap/pagectrl.c
View file @
2f58faad
...
...
@@ -256,7 +256,7 @@ ldap_parse_page_control(
ld
->
ld_errno
=
ldap_parse_pageresponse_control
(
ld
,
c
,
countp
,
&
cookie
);
if
(
ld
->
ld_errno
==
LDAP_SUCCESS
)
{
*
cookiep
=
LDAP_MALLOC
(
sizeof
(
struct
berval
*
)
);
*
cookiep
=
LDAP_MALLOC
(
sizeof
(
struct
berval
)
);
if
(
*
cookiep
==
NULL
)
{
ld
->
ld_errno
=
LDAP_NO_MEMORY
;
}
else
{
...
...
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