View | Details | Raw Unified | Return to bug 45994
Collapse All | Expand All

(-)modules/ldap/util_ldap.c (-1 / +5 lines)
Lines 305-311 Link Here
305
        else {
305
        else {
306
            ldc->reason = result->reason;
306
            ldc->reason = result->reason;
307
        }
307
        }
308
        return(result->rc);
308
        if (NULL != result) {
309
            return(result->rc);
310
        } else {
311
            return(APR_EGENERAL);
312
        }
309
    }
313
    }
310
314
311
    /* Now that we have an ldap struct, add it to the referral list for rebinds. */
315
    /* Now that we have an ldap struct, add it to the referral list for rebinds. */

Return to bug 45994