From e3faae939c5004918c80cc589a3664f5b236a8cb Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Wed, 26 Aug 2020 13:22:52 +0100 Subject: [PATCH] ITS#9328 cldap: check for error on connected socket libldap doesn't use a connected socket for UDP sessions, but 3rd parties can, passed in with ldap_init_fd(). --- libraries/libldap/result.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/libraries/libldap/result.c b/libraries/libldap/result.c index 04ee48ea18..88876eae66 100644 --- a/libraries/libldap/result.c +++ b/libraries/libldap/result.c @@ -486,7 +486,8 @@ retry: #ifdef LDAP_CONNECTIONLESS if ( LDAP_IS_UDP(ld) ) { struct sockaddr_storage from; - ber_int_sb_read( lc->lconn_sb, &from, sizeof(struct sockaddr_storage) ); + if ( ber_int_sb_read( lc->lconn_sb, &from, sizeof(struct sockaddr_storage) ) < 0 ) + goto fail; if ( ld->ld_options.ldo_version == LDAP_VERSION2 ) isv2 = 1; } nextresp3: @@ -502,10 +503,11 @@ nextresp3: break; case LBER_DEFAULT: +fail: err = sock_errno(); #ifdef LDAP_DEBUG - Debug0( LDAP_DEBUG_CONNS, - "ber_get_next failed.\n" ); + Debug1( LDAP_DEBUG_CONNS, + "ber_get_next failed, errno=%d.\n", err ); #endif if ( err == EWOULDBLOCK ) return LDAP_MSG_X_KEEP_LOOKING; if ( err == EAGAIN ) return LDAP_MSG_X_KEEP_LOOKING;