Message ID | 20220613233419.177421-2-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | ef14e6eaa7e698d0f62feed3eecd0cae74484d7b |
Headers | show |
Series | [BlueZ] monitor/att: Fix decoding for notifications | 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/setupell | success | Setup ELL PASS |
tedd_an/buildprep | success | Build Prep PASS |
tedd_an/build | success | Build Configuration PASS |
tedd_an/makecheck | success | Make Check PASS |
tedd_an/makecheckvalgrind | success | Make Check PASS |
tedd_an/makedistcheck | success | Make Distcheck PASS |
tedd_an/build_extell | success | Build External ELL PASS |
tedd_an/build_extell_make | success | Build Make with External ELL 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=650006 ---Test result--- Test Summary: CheckPatch PASS 1.10 seconds GitLint PASS 0.70 seconds Prep - Setup ELL PASS 37.88 seconds Build - Prep PASS 0.57 seconds Build - Configure PASS 7.42 seconds Build - Make PASS 1338.88 seconds Make Check PASS 11.80 seconds Make Check w/Valgrind PASS 398.51 seconds Make Distcheck PASS 212.71 seconds Build w/ext ELL - Configure PASS 7.30 seconds Build w/ext ELL - Make PASS 1275.21 seconds Incremental Build with patchesPASS 0.00 seconds --- Regards, Linux Bluetooth
Hello: This patch was applied to bluetooth/bluez.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Mon, 13 Jun 2022 16:34:19 -0700 you wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > --- > monitor/att.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - [BlueZ] monitor/att: Fix decoding for notifications https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=ef14e6eaa7e6 You are awesome, thank you!
diff --git a/monitor/att.c b/monitor/att.c index 00db8ddaa..de70a9dc4 100644 --- a/monitor/att.c +++ b/monitor/att.c @@ -1547,7 +1547,7 @@ static void print_notify(const struct l2cap_frame *frame, uint16_t handle, return; } - attr = get_attribute(frame, handle, false); + attr = get_attribute(frame, handle, true); if (!attr) return;
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> --- monitor/att.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)