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
8af02353
Commit
8af02353
authored
Dec 12, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6638
parent
d009ca68
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
8af02353
...
...
@@ -2,6 +2,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.24 Engineering
Fixed liblber to not close invalid sockets (ITS#6585)
Fixed ldapsearch segfault with deref (ITS#6638)
Fixed slapd acl parsing overflow (ITS#6611)
Fixed slapd modify to return actual error (ITS#6581)
Fixed slapd-bdb entry cache delete failure (ITS#6577)
...
...
clients/tools/ldapsearch.c
View file @
8af02353
...
...
@@ -594,7 +594,7 @@ handle_private_option( int i )
exit
(
EXIT_FAILURE
);
}
for
(
ispecs
=
0
;
specs
[
ispecs
]
!=
NULL
;
ispecs
++
)
/* count'em */
/* count'em */
;
ds
=
ldap_memcalloc
(
ispecs
+
1
,
sizeof
(
LDAPDerefSpec
)
);
if
(
ds
==
NULL
)
{
...
...
@@ -1334,6 +1334,9 @@ getNextPage:
if
(
derefval
.
bv_val
!=
NULL
)
{
ldap_memfree
(
derefval
.
bv_val
);
}
if
(
def_urlpre
!=
NULL
)
{
ber_memfree
(
def_urlpre
);
}
if
(
c
)
{
for
(
;
save_nctrls
--
>
0
;
)
{
...
...
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