From f4662ad94310c08fd83e2cd9acd4ab0a03379cee Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 10 Mar 2008 18:03:27 +0000 Subject: Fix memory leak. --- hcid/device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hcid/device.c b/hcid/device.c index 74cf7cd3..840f8d1f 100644 --- a/hcid/device.c +++ b/hcid/device.c @@ -751,6 +751,7 @@ static void device_free(struct device *device) { g_slist_foreach(device->uuids, (GFunc) g_free, NULL); g_slist_free(device->uuids); + g_free(device->address); g_free(device->path); g_free(device); } -- cgit