qcacmn: Fix use-after-free issue in util_scan_parse_mbssid
In some scenario, mbssid_info->prof_residue could be set to true, hence mbssid_info->split_prof_continue will also be set to true. Then for the next loop if buffer split_prof_start is freed but split_prof_end does not reinitialize to NULL, then use-after-free happens. To address this issue, reinitialize split_prof_end properly when split_prof_start is freed. Change-Id: Iad7448868cfa4c2dd7922f6c1b2622cf20a6a28c CRs-Fixed: 3583521
Please register or sign in to comment