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
Joe Martin
OpenLDAP
Commits
1d29bd10
Commit
1d29bd10
authored
Dec 12, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6639
parent
ae6ef32c
Changes
2
Show whitespace changes
Inline
Side-by-side
CHANGES
View file @
1d29bd10
...
...
@@ -3,6 +3,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.24 Engineering
Fixed liblber to not close invalid sockets (ITS#6585)
Fixed libldap dnssrv port format specifier (ITS#6644)
Fixed libldap sasl partial write handling (ITS#6639)
Fixed ldapsearch segfault with deref (ITS#6638)
Fixed slapd acl parsing overflow (ITS#6611)
Fixed slapd modify to return actual error (ITS#6581)
...
...
libraries/libldap/sasl.c
View file @
1d29bd10
...
...
@@ -733,8 +733,9 @@ sb_sasl_generic_write( Sockbuf_IO_Desc *sbiod, void *buf, ber_len_t len)
return
ret
;
}
else
if
(
p
->
buf_out
.
buf_ptr
!=
p
->
buf_out
.
buf_end
)
{
/* partial write? pretend nothing got written */
len2
=
0
;
p
->
flags
|=
LDAP_PVT_SASL_PARTIAL_WRITE
;
sock_errset
(
EAGAIN
);
len2
=
-
1
;
}
/* return number of bytes encoded, not written, to ensure
...
...
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