Diff between 8bbd9ed42847fc8f301fc3302b248979b9729bee and bfa32744caee0d434c67327c5f33a3a148ae4688

Changed Files

File Additions Deletions Status
tools/btgatt-client.c +4 -0 modified

Full Patch

diff --git a/tools/btgatt-client.c b/tools/btgatt-client.c
index 3fd492b..d1395b2 100644
--- a/tools/btgatt-client.c
+++ b/tools/btgatt-client.c
@@ -758,6 +758,9 @@ static void prompt_read_cb(int fd, uint32_t events, void *user_data)
 		if (*cmd != '\0')
 			break;
 
+	if (!cmd)
+		goto failed;
+
 	for (i = 0; command[i].cmd; i++) {
 		if (strcmp(command[i].cmd, cmd) == 0)
 			break;
@@ -768,6 +771,7 @@ static void prompt_read_cb(int fd, uint32_t events, void *user_data)
 	else
 		fprintf(stderr, "Unknown command: %s\n", line);
 
+failed:
 	print_prompt();
 
 	free(line);