208b0bb Bug 709826 - Memory leak: when extra referrals configured

Authored and Committed by nhosoi 12 years ago
    Bug 709826 - Memory leak: when extra referrals configured
    
    https://bugzilla.redhat.com/show_bug.cgi?id=709826
    
    Description: "referrals" allocated in ber_scanf called with "[v]"
    option is an array of chars.  It should have been freed by
    slapi_ch_array_free, but slapi_ch_free was actually called, which
    does not releases the real strings, but just the array of pointers.
    
    This patch calls slapi_ch_array_free.