Skip to content
Snippets Groups Projects
Commit 219aee02 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#6673

parent 872ccaa2
No related branches found
No related tags found
No related merge requests found
......@@ -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 GnuTLS hang on socket close (ITS#6673)
Fixed libldap sasl partial write handling (ITS#6639)
Fixed libldap url parsing with NULL host (ITS#6653)
Fixed ldapsearch segfault with deref (ITS#6638)
......
......@@ -967,7 +967,7 @@ tlsg_sb_close( Sockbuf_IO_Desc *sbiod )
assert( sbiod->sbiod_pvt != NULL );
p = (struct tls_data *)sbiod->sbiod_pvt;
gnutls_bye ( p->session->session, GNUTLS_SHUT_RDWR );
gnutls_bye ( p->session->session, GNUTLS_SHUT_WR );
return 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment