Message ID | 20240212162538.32207-2-silviu.barbulescu@nxp.com |
---|---|
State | New |
Headers | show |
Series | shared/bap: Fix wrong value used when extracting LTVs | expand |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=825274 ---Test result--- Test Summary: CheckPatch PASS 0.38 seconds GitLint PASS 0.27 seconds BuildEll PASS 24.62 seconds BluezMake PASS 712.53 seconds MakeCheck PASS 12.10 seconds MakeDistcheck PASS 164.17 seconds CheckValgrind PASS 228.26 seconds CheckSmatch PASS 332.71 seconds bluezmakeextell PASS 107.42 seconds IncrementalBuild PASS 673.59 seconds ScanBuild PASS 954.73 seconds --- Regards, Linux Bluetooth
diff --git a/src/shared/bap.c b/src/shared/bap.c index e26dbf944..4cc81844f 100644 --- a/src/shared/bap.c +++ b/src/shared/bap.c @@ -5991,7 +5991,7 @@ static void extract_ltv(size_t i, uint8_t l, uint8_t t, uint8_t *v, ltv_len = l + 1; iov_append(ext_data->result, 1, <v_len); iov_append(ext_data->result, 1, &t); - iov_append(ext_data->result, l, &v); + iov_append(ext_data->result, l, v); } }