Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH] Bluetooth: Fix unused value warning in sco_sock_connect
@ 2024-03-23  7:22 Bharath SM
  2024-03-23  7:57 ` bluez.test.bot
  2024-03-23  9:51 ` [PATCH] " Pauli Virtanen
  0 siblings, 2 replies; 3+ messages in thread
From: Bharath SM @ 2024-03-23  7:22 UTC (permalink / raw)
  To: marcel, johan.hedberg, luiz.von.dentz, linux-bluetooth; +Cc: Bharath SM

Coverity complains of an unused value:

CID 1528147: (#1 of 1): Unused value (UNUSED_VALUE)
assigned_value: Assigning value -22 to err here, but that stored
value is overwritten before it can be used.
	err = -EINVAL;

Fix it by removing the assignment.

Signed-off-by: Bharath SM <bharathsm@microsoft.com>
---
 net/bluetooth/sco.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/net/bluetooth/sco.c b/net/bluetooth/sco.c
index 43daf965a01e..e74bce4e1d6c 100644
--- a/net/bluetooth/sco.c
+++ b/net/bluetooth/sco.c
@@ -581,9 +581,6 @@ static int sco_sock_connect(struct socket *sock, struct sockaddr *addr, int alen
 	if (sk->sk_state != BT_OPEN && sk->sk_state != BT_BOUND)
 		return -EBADFD;
 
-	if (sk->sk_type != SOCK_SEQPACKET)
-		err = -EINVAL;
-
 	lock_sock(sk);
 	/* Set destination address and psm */
 	bacpy(&sco_pi(sk)->dst, &sa->sco_bdaddr);
-- 
2.34.1


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

end of thread, other threads:[~2024-03-23  9:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-23  7:22 [PATCH] Bluetooth: Fix unused value warning in sco_sock_connect Bharath SM
2024-03-23  7:57 ` bluez.test.bot
2024-03-23  9:51 ` [PATCH] " Pauli Virtanen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox