After setting local name, if repeating to set on/off of set-advertise-name then bluetoothctl may dump core due to double free. This patch uses secure g_free() instead of free(). --- client/advertising.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/client/advertising.c b/client/advertising.c index b105da9..bfdebd5 100644 --- a/client/advertising.c +++ b/client/advertising.c @@ -547,8 +547,10 @@ void ad_advertise_name(DBusConnection *conn, bool value) ad.name = value; - if (!value) - free(ad.local_name); + if (!value) { + g_free(ad.local_name); + ad.local_name = NULL; + } g_dbus_emit_property_changed(conn, AD_PATH, AD_IFACE, "Includes"); } @@ -558,7 +560,7 @@ void ad_advertise_local_name(DBusConnection *conn, const char *name) if (ad.local_name && !strcmp(name, ad.local_name)) return; - free(ad.local_name); + g_free(ad.local_name); ad.local_name = strdup(name); g_dbus_emit_property_changed(conn, AD_PATH, AD_IFACE, "LocalName"); -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html