Message ID | 20241002133506.16834-2-iulia.tanasescu@nxp.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 8146d8f7dd675d7b0f8e997f39add23b1cc4e578 |
Headers | show |
Series | shared/bap: Fix load of misaligned address error | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/CheckPatch | success | CheckPatch PASS |
tedd_an/GitLint | success | Gitlint PASS |
tedd_an/BuildEll | success | Build ELL PASS |
tedd_an/BluezMake | success | Bluez Make PASS |
tedd_an/MakeCheck | success | Bluez Make Check PASS |
tedd_an/MakeDistcheck | success | Make Distcheck PASS |
tedd_an/CheckValgrind | success | Check Valgrind PASS |
tedd_an/CheckSmatch | warning | CheckSparse WARNING src/shared/bap.c:288:25: warning: array of flexible structuressrc/shared/bap.c: note: in included file:./src/shared/ascs.h:88:25: warning: array of flexible structuressrc/shared/bap.c:288:25: warning: array of flexible structuressrc/shared/bap.c: note: in included file:./src/shared/ascs.h:88:25: warning: array of flexible structuressrc/shared/bap.c:288:25: warning: array of flexible structuressrc/shared/bap.c: note: in included file:./src/shared/ascs.h:88:25: warning: array of flexible structures |
tedd_an/bluezmakeextell | success | Make External ELL PASS |
tedd_an/IncrementalBuild | success | Incremental Build PASS |
tedd_an/ScanBuild | success | Scan Build PASS |
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=894842 ---Test result--- Test Summary: CheckPatch PASS 0.27 seconds GitLint PASS 0.19 seconds BuildEll PASS 24.11 seconds BluezMake PASS 1505.09 seconds MakeCheck PASS 13.40 seconds MakeDistcheck PASS 175.26 seconds CheckValgrind PASS 248.09 seconds CheckSmatch WARNING 348.90 seconds bluezmakeextell PASS 117.56 seconds IncrementalBuild PASS 1393.01 seconds ScanBuild PASS 1012.78 seconds Details ############################## Test: CheckSmatch - WARNING Desc: Run smatch tool with source Output: src/shared/bap.c:288:25: warning: array of flexible structuressrc/shared/bap.c: note: in included file:./src/shared/ascs.h:88:25: warning: array of flexible structuressrc/shared/bap.c:288:25: warning: array of flexible structuressrc/shared/bap.c: note: in included file:./src/shared/ascs.h:88:25: warning: array of flexible structuressrc/shared/bap.c:288:25: warning: array of flexible structuressrc/shared/bap.c: note: in included file:./src/shared/ascs.h:88:25: warning: array of flexible structures --- Regards, Linux Bluetooth
diff --git a/src/shared/bap.c b/src/shared/bap.c index 72f0f8a03..00c3b9ff6 100644 --- a/src/shared/bap.c +++ b/src/shared/bap.c @@ -6484,8 +6484,8 @@ static void check_pac_caps_ltv(size_t i, uint8_t l, uint8_t t, uint8_t *v, switch (t) { case BAP_FREQ_LTV_TYPE: - mask = *((uint16_t *)v); - mask = le16_to_cpu(mask); + mask = get_le16(v); + if (mask & (1 << (bis_v[0] - 1))) compare_data->data32 |= 1<<t; break; @@ -6494,12 +6494,10 @@ static void check_pac_caps_ltv(size_t i, uint8_t l, uint8_t t, uint8_t *v, compare_data->data32 |= 1<<t; break; case BAP_FRAME_LEN_LTV_TYPE: - min = *((uint16_t *)v); - max = *((uint16_t *)(&v[2])); - frame_len = *((uint16_t *)bis_v); - min = le16_to_cpu(min); - max = le16_to_cpu(max); - frame_len = le16_to_cpu(frame_len); + min = get_le16(v); + max = get_le16(v + 2); + frame_len = get_le16(bis_v); + if ((frame_len >= min) && (frame_len <= max)) compare_data->data32 |= 1<<t;