fa2636a Ticket 162 - Infinite loop / spin inside strcmpi_fast, acl_read_access_allowed_on_attr, server DoS

Authored and Committed by mreynolds 11 years ago
    Ticket 162 - Infinite loop / spin inside strcmpi_fast, acl_read_access_allowed_on_attr, server DoS
    
    https://fedorahosted.org/389/ticket/162
    
    Bug Description: Infinite loop / spin inside strcmpi_fast, acl_read_access_allowed_on_attr, server DoS
    
    Fix Description: Cannot use continue - have to go to the end of the loop and
    get the next attribute - added a label for nextattr and use goto nextattr
    instead of continue.