Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e8f2311e authored by Hansong Zhang's avatar Hansong Zhang
Browse files

DO NOT MERGE Fix OOB read in avrc_ctrl_pars_vendor_rsp

Bug: 78526423
Test: manual
Change-Id: I0eeacc6a25b12f4b999098375d0d032cfa462a91
parent 29a622a3
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -251,6 +251,11 @@ static tAVRC_STS avrc_ctrl_pars_vendor_rsp(
            break;
        }
        BE_STREAM_TO_UINT8(p_result->list_app_values.num_val, p);
        if (p_result->list_app_values.num_val > AVRC_MAX_APP_ATTR_SIZE) {
            android_errorWriteLog(0x534e4554, "78526423");
            p_result->list_app_values.num_val = AVRC_MAX_APP_ATTR_SIZE;
        }

        AVRC_TRACE_DEBUG("%s value count = %d ", __func__, p_result->list_app_values.num_val);
        for(int xx = 0; xx < p_result->list_app_values.num_val; xx++)
        {