From 690f751b8474d269dc9838a7a2fd34b057b44b9d Mon Sep 17 00:00:00 2001 From: Gowtham Anandha Babu Date: Mon, 15 Dec 2014 19:29:14 +0530 Subject: [PATCH] monitor/l2cap: Fix buffer overflow issue String copy function overflows destination buffer. strcat(str, "LinkKey "); ^~~~~~~~~~~~~~~~~~~~~~~ --- monitor/l2cap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/l2cap.c b/monitor/l2cap.c index 5f845ac81..0b6f7525d 100644 --- a/monitor/l2cap.c +++ b/monitor/l2cap.c @@ -2379,7 +2379,7 @@ static void print_smp_auth_req(uint8_t auth_req) static void print_smp_key_dist(const char *label, uint8_t dist) { - char str[19]; + char str[27]; if (!(dist & 0x07)) { strcpy(str, " "); -- 2.47.3