[PATCH v2 2/3] tools/btsnoop : Fix variable reassigning issue

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The Variable 'written' is reassigned a value before the old one has been used.
---
 tools/btsnoop.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tools/btsnoop.c b/tools/btsnoop.c
index 6ca62d2..1fdd391 100644
--- a/tools/btsnoop.c
+++ b/tools/btsnoop.c
@@ -211,8 +211,9 @@ next_packet:
 		goto next_packet;
 	}
 
-	written = input_pkt[select_input].size = htobe32(toread - 1);
-	written = input_pkt[select_input].len = htobe32(toread - 1);
+	written = htobe32(toread-1);
+	input_pkt[select_input].size = written;
+	input_pkt[select_input].len = written;
 
 	switch (buf[0]) {
 	case 0x01:
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux