From 56d9d175e34263efc3091eb01fd51351d8d4a2c2 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Tue, 29 Jul 2014 17:21:01 +0300 Subject: [PATCH] attrib: Fix memory leak --- attrib/gatttool.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/attrib/gatttool.c b/attrib/gatttool.c index bca7f698b..db5da6220 100644 --- a/attrib/gatttool.c +++ b/attrib/gatttool.c @@ -340,6 +340,7 @@ static gboolean characteristics_write(gpointer user_data) gatt_write_cmd(attrib, opt_handle, value, len, mainloop_quit, value); + g_free(value); return FALSE; error: @@ -393,6 +394,7 @@ static gboolean characteristics_write_req(gpointer user_data) gatt_write_char(attrib, opt_handle, value, len, char_write_req_cb, NULL); + g_free(value); return FALSE; error: -- 2.47.3