summaryrefslogtreecommitdiffstats
path: root/hcid
diff options
context:
space:
mode:
Diffstat (limited to 'hcid')
-rw-r--r--hcid/dbus-adapter.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/hcid/dbus-adapter.c b/hcid/dbus-adapter.c
index e2b05577..645ecaa9 100644
--- a/hcid/dbus-adapter.c
+++ b/hcid/dbus-adapter.c
@@ -1229,9 +1229,9 @@ static DBusHandlerResult adapter_get_remote_info(DBusConnection *conn,
dbus_message_iter_append_dict_entry(&dict, "manufacturer",
DBUS_TYPE_STRING, &ptr);
- ptr = lmp_vertostr(ver);
-
- snprintf(buf, 64, "Bluetooth %s", ptr);
+ str = lmp_vertostr(ver);
+ snprintf(buf, 64, "Bluetooth %s", str);
+ bt_free(str);
create_name(filename, PATH_MAX, STORAGEDIR,
adapter->address, "features");
@@ -1284,7 +1284,7 @@ static DBusHandlerResult adapter_get_remote_version(DBusConnection *conn,
DBusMessage *reply;
char filename[PATH_MAX + 1];
char *addr_ptr, *str;
- const char *str_ver;
+ char *str_ver = NULL;
char info_array[64], *info = info_array;
int compid, ver, subver;
@@ -1337,6 +1337,9 @@ static DBusHandlerResult adapter_get_remote_version(DBusConnection *conn,
free(str);
failed:
+ if (str_ver)
+ bt_free(str_ver);
+
reply = dbus_message_new_method_return(msg);
if (!reply)
return DBUS_HANDLER_RESULT_NEED_MEMORY;