[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: Exception handling!!!



> Hi,
> Sorry for insufficient information.
> In brief,am trying to connect to LDAP server using following api's
>
> res = ldap_initialize(&ld, ldapuri);
> res = ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, &protocol );
> res = ldap_start_tls_s(ld, NULL, NULL);
> res = ldap_sasl_interactive_bind_s( ld, NULL, "NTLM", NULL,
> NULL,sasl_flags, saslInteract, &auth );
>
> My code normally  works fine, but in one senario after TLS, it crashed
> inside ldap_sasl_interactive_bind_s()
> API.
> Crash report says it crashed in "ber_sockbuf_ctrl + 147" inside "liblber"
> library.
> I think, it is possible to avoid the crash, If I could catch exceptions
> from library.

What about checking the return value of all calls before
ldap_sasl_interactive_bind_s()?  If it's not LDAP_SUCCESS, that's an
exception.

p.