5ae8186 Bug 630091 - (cov#15582) Free of uninitialized pointer in attr_index_config()

Authored and Committed by nkinder 13 years ago
    Bug 630091 - (cov#15582) Free of uninitialized pointer in attr_index_config()
    
    In attr_index_config(), if argc or argv are NULL, we jump to the
    done label.  We then try to free attrs, but it was never initialized.
    We need to initialize attrs to NULL.