linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH hcidump] hci: Fix EIR data parsing
@ 2012-07-28 22:20 Andrzej Kaczmarek
  2012-07-28 23:42 ` Vinicius Costa Gomes
  0 siblings, 1 reply; 2+ messages in thread
From: Andrzej Kaczmarek @ 2012-07-28 22:20 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Andrzej Kaczmarek

Data passed to ext_inquiry_data_dump are expected to start with length
octet which was consumed by get_u8.
---
 parser/hci.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/parser/hci.c b/parser/hci.c
index 742a1b5..adcdaf7 100644
--- a/parser/hci.c
+++ b/parser/hci.c
@@ -831,16 +831,19 @@ static inline void ext_inquiry_response_dump(int level, struct frame *frm)
 {
 	void *ptr = frm->ptr;
 	uint32_t len = frm->len;
+	uint8_t *data_ptr;
 	uint8_t length;
 
+	data_ptr = frm->ptr;
 	length = get_u8(frm);
 
 	while (length > 0) {
-		ext_inquiry_data_dump(level, frm, frm->ptr);
+		ext_inquiry_data_dump(level, frm, data_ptr);
 
 		frm->ptr += length;
 		frm->len -= length;
 
+		data_ptr = frm->ptr;
 		length = get_u8(frm);
 	}
 
-- 
1.7.10


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

end of thread, other threads:[~2012-07-28 23:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-28 22:20 [PATCH hcidump] hci: Fix EIR data parsing Andrzej Kaczmarek
2012-07-28 23:42 ` Vinicius Costa Gomes

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).