Skip to content
Snippets Groups Projects
Commit fad273c2 authored by Howard Chu's avatar Howard Chu
Browse files

Avoid trashing client memory when socket is greater than FD_SETSIZE

parent 6ff5fce7
No related branches found
No related tags found
No related merge requests found
......@@ -282,6 +282,15 @@ ldap_pvt_connect(LDAP *ld, ber_socket_t s,
#ifdef HAVE_WINSOCK
fd_set efds;
#endif
#ifdef FD_SETSIZE
if ( s >= FD_SETSIZE ) {
rc = AC_SOCKET_ERROR;
tcp_close( s );
ldap_pvt_set_errno( EMFILE );
return rc;
}
#endif
FD_ZERO(&wfds);
FD_SET(s, &wfds );
......
......@@ -247,6 +247,14 @@ sendcred:
{
fd_set wfds, *z=NULL;
#ifdef FD_SETSIZE
if ( s >= FD_SETSIZE ) {
rc = AC_SOCKET_ERROR;
tcp_close( s );
ldap_pvt_set_errno( EMFILE );
return rc;
}
#endif
do {
FD_ZERO(&wfds);
FD_SET(s, &wfds );
......
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