Ignore:
Timestamp:
Jun 16, 2009, 5:52:30 PM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.2 to 3.2.12

File:
1 edited

Legend:

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

    r233 r272  
    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.