[PATCH] gatt: Fix memory leak in profile_add

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx>

Cleanup memory correctly.
---
 src/gatt-database.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/gatt-database.c b/src/gatt-database.c
index dd80aa0..ca514db 100644
--- a/src/gatt-database.c
+++ b/src/gatt-database.c
@@ -2299,8 +2299,11 @@ static int profile_add(struct external_profile *profile, const char *uuid)
 		return -ENOMEM;
 
 	p->remote_uuid = (const void *) g_strdup(uuid);
-	if (!p->remote_uuid)
+	if (!p->remote_uuid) {
+		g_free((void *) p->name);
+		free((void *) p);
 		return -ENOMEM;
+	}
 
 	p->auto_connect = true;
 
-- 
2.1.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




[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux