mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-24 13:24:56 +08:00
ITS#6721: Fix uninitialized tv_usec from ITS#6282
This commit is contained in:
parent
5dd8cc1015
commit
4484781b0d
@ -2339,8 +2339,7 @@ retry:
|
||||
rs->sr_err = ldap_whoami( lc->lc_ld, ctrls, NULL, &msgid );
|
||||
if ( rs->sr_err == LDAP_SUCCESS ) {
|
||||
/* by now, make sure no timeout is used (ITS#6282) */
|
||||
struct timeval tv;
|
||||
tv.tv_sec = -1;
|
||||
struct timeval tv = { -1, 0 };
|
||||
if ( ldap_result( lc->lc_ld, msgid, LDAP_MSG_ALL, &tv, &res ) == -1 ) {
|
||||
ldap_get_option( lc->lc_ld, LDAP_OPT_ERROR_NUMBER,
|
||||
&rs->sr_err );
|
||||
|
@ -191,8 +191,7 @@ retry:
|
||||
if ( rc == LDAP_SUCCESS ) {
|
||||
/* TODO: set timeout? */
|
||||
/* by now, make sure no timeout is used (ITS#6282) */
|
||||
struct timeval tv;
|
||||
tv.tv_sec = -1;
|
||||
struct timeval tv = { -1, 0 };
|
||||
if ( ldap_result( lc->lc_ld, msgid, LDAP_MSG_ALL, &tv, &res ) == -1 ) {
|
||||
ldap_get_option( lc->lc_ld, LDAP_OPT_ERROR_NUMBER, &rc );
|
||||
rs->sr_err = rc;
|
||||
@ -320,8 +319,7 @@ retry:
|
||||
if ( rc == LDAP_SUCCESS ) {
|
||||
/* TODO: set timeout? */
|
||||
/* by now, make sure no timeout is used (ITS#6282) */
|
||||
struct timeval tv;
|
||||
tv.tv_sec = -1;
|
||||
struct timeval tv = { -1, 0 };
|
||||
if ( ldap_result( lc->lc_ld, msgid, LDAP_MSG_ALL, &tv, &res ) == -1 ) {
|
||||
ldap_get_option( lc->lc_ld, LDAP_OPT_ERROR_NUMBER, &rc );
|
||||
rs->sr_err = rc;
|
||||
|
Loading…
Reference in New Issue
Block a user