From 975df07aa01a3332a82dde17f5c49d17119ecee7 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Fri, 19 Dec 2014 11:25:24 +0200 Subject: [PATCH] tools/gatt: Fix not checking malloc() failure This follows standard practice elsewhere in this file. --- tools/btgatt-client.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/btgatt-client.c b/tools/btgatt-client.c index e2e053742..62c4d3e7a 100644 --- a/tools/btgatt-client.c +++ b/tools/btgatt-client.c @@ -457,6 +457,10 @@ static void cmd_read_multiple(struct client *cli, char *cmd_str) } value = malloc(sizeof(uint16_t) * argc); + if (!value) { + printf("Failed to construct value\n"); + return; + } for (i = 0; i < argc; i++) { value[i] = strtol(argv[i], &endptr, 0); -- 2.47.3