{
ber_len_t max = 256*1024;
Sockbuf *sb;
- if(ldap_get_option(li->ld, LDAP_OPT_SOCKBUF, (void **)&sb) ||
+ if((ldap_get_option(li->ld, LDAP_OPT_SOCKBUF, &sb) != LDAP_OPT_SUCCESS) ||
/* Set the maximum allowed size of an incoming message, which to
OpenLDAP means that it will malloc() memory up to this size. If not
set, there is no limit and we instead risk a malloc() failure. */
- ber_sockbuf_ctrl(sb, LBER_SB_OPT_SET_MAX_INCOMING, &max)) {
+ !ber_sockbuf_ctrl(sb, LBER_SB_OPT_SET_MAX_INCOMING, &max)) {
result = CURLE_FAILED_INIT;
goto out;
}