linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH BlueZ 0/1] shared/bap: Fix wrong value used when extracting LTVs
@ 2024-02-12 16:25 Silviu Florian Barbulescu
  2024-02-12 16:25 ` [PATCH BlueZ 1/1] " Silviu Florian Barbulescu
  2024-02-15 21:10 ` [PATCH BlueZ 0/1] " patchwork-bot+bluetooth
  0 siblings, 2 replies; 4+ messages in thread
From: Silviu Florian Barbulescu @ 2024-02-12 16:25 UTC (permalink / raw)
  To: linux-bluetooth
  Cc: mihai-octavian.urzica, silviu.barbulescu, vlad.pruteanu,
	andrei.istodorescu, luiz.dentz, iulia.tanasescu

Fix wrong value used when extracting LTVs when generating BASE

Silviu Florian Barbulescu (1):
  shared/bap: Fix wrong value used when extracting LTVs

 src/shared/bap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


base-commit: c1851987ca2c6e41d1e0e166e959b754e369c254
-- 
2.39.2


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH BlueZ 1/1] shared/bap: Fix wrong value used when extracting LTVs
  2024-02-12 16:25 [PATCH BlueZ 0/1] shared/bap: Fix wrong value used when extracting LTVs Silviu Florian Barbulescu
@ 2024-02-12 16:25 ` Silviu Florian Barbulescu
  2024-02-12 17:31   ` bluez.test.bot
  2024-02-15 21:10 ` [PATCH BlueZ 0/1] " patchwork-bot+bluetooth
  1 sibling, 1 reply; 4+ messages in thread
From: Silviu Florian Barbulescu @ 2024-02-12 16:25 UTC (permalink / raw)
  To: linux-bluetooth
  Cc: mihai-octavian.urzica, silviu.barbulescu, vlad.pruteanu,
	andrei.istodorescu, luiz.dentz, iulia.tanasescu

Fix wrong value used when extracting LTVs when generating BASE

---
 src/shared/bap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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, &ltv_len);
 		iov_append(ext_data->result, 1, &t);
-		iov_append(ext_data->result, l, &v);
+		iov_append(ext_data->result, l, v);
 	}
 }
 
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* RE: shared/bap: Fix wrong value used when extracting LTVs
  2024-02-12 16:25 ` [PATCH BlueZ 1/1] " Silviu Florian Barbulescu
@ 2024-02-12 17:31   ` bluez.test.bot
  0 siblings, 0 replies; 4+ messages in thread
From: bluez.test.bot @ 2024-02-12 17:31 UTC (permalink / raw)
  To: linux-bluetooth, silviu.barbulescu

[-- Attachment #1: Type: text/plain, Size: 946 bytes --]

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


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH BlueZ 0/1] shared/bap: Fix wrong value used when extracting LTVs
  2024-02-12 16:25 [PATCH BlueZ 0/1] shared/bap: Fix wrong value used when extracting LTVs Silviu Florian Barbulescu
  2024-02-12 16:25 ` [PATCH BlueZ 1/1] " Silviu Florian Barbulescu
@ 2024-02-15 21:10 ` patchwork-bot+bluetooth
  1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+bluetooth @ 2024-02-15 21:10 UTC (permalink / raw)
  To: Silviu Florian Barbulescu
  Cc: linux-bluetooth, mihai-octavian.urzica, vlad.pruteanu,
	andrei.istodorescu, luiz.dentz, iulia.tanasescu

Hello:

This patch was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Mon, 12 Feb 2024 18:25:37 +0200 you wrote:
> Fix wrong value used when extracting LTVs when generating BASE
> 
> Silviu Florian Barbulescu (1):
>   shared/bap: Fix wrong value used when extracting LTVs
> 
>  src/shared/bap.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> [...]

Here is the summary with links:
  - [BlueZ,1/1] shared/bap: Fix wrong value used when extracting LTVs
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=055a83c84761

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-02-15 21:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-12 16:25 [PATCH BlueZ 0/1] shared/bap: Fix wrong value used when extracting LTVs Silviu Florian Barbulescu
2024-02-12 16:25 ` [PATCH BlueZ 1/1] " Silviu Florian Barbulescu
2024-02-12 17:31   ` bluez.test.bot
2024-02-15 21:10 ` [PATCH BlueZ 0/1] " patchwork-bot+bluetooth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).