void FABRIC_CONFIGURATION_SECTION_LIST_free()

in src/fc_section_list_argc_argv.c [153:160]


void FABRIC_CONFIGURATION_SECTION_LIST_free(FABRIC_CONFIGURATION_SECTION_LIST* fabric_configuration_section_list)
{
    for (ULONG u = 0; u < fabric_configuration_section_list->Count; u++)
    {
        FABRIC_CONFIGURATION_SECTION_free((void*)(fabric_configuration_section_list->Items + u));
    }
    free((void*)fabric_configuration_section_list->Items);
}