Ignore:
Timestamp:
May 24, 2009, 7:55:48 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update Samba 3.3 branch to 3.3.4

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/libads/ldap.c

    r221 r224  
    119119                return LDAP_TIMELIMIT_EXCEEDED;
    120120
     121        /*
     122         * A bug in OpenLDAP means ldap_search_ext_s can return
     123         * LDAP_SUCCESS but with a NULL res pointer. Cope with
     124         * this. See bug #6279 for details. JRA.
     125         */
     126
     127        if (*res == NULL) {
     128                return LDAP_TIMELIMIT_EXCEEDED;
     129        }
     130
    121131        return result;
    122132}
Note: See TracChangeset for help on using the changeset viewer.