From 6df32c89da8ddb98376a868e8d251e810e89b22e Mon Sep 17 00:00:00 2001 From: Gowtham Anandha Babu Date: Mon, 15 Sep 2014 11:40:04 +0530 Subject: [PATCH] tools/btsnoop : Fix variable reassigning issue 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 6ca62d2cd..14581f21f 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: -- 2.47.3