[PATCH 1/1] obexd: Fix memory leak in phonebook-dummy

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

 



g_build_filename() returns a newly-allocated string
that must be freed with g_free().
---
 obexd/plugins/phonebook-dummy.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/obexd/plugins/phonebook-dummy.c b/obexd/plugins/phonebook-dummy.c
index 29ae889..b9e3a0d 100644
--- a/obexd/plugins/phonebook-dummy.c
+++ b/obexd/plugins/phonebook-dummy.c
@@ -524,6 +524,9 @@ void *phonebook_get_entry(const char *folder, const char *id,
 	filename = g_build_filename(root_folder, folder, id, NULL);
 
 	fd = open(filename, O_RDONLY);
+
+	g_free(filename);
+
 	if (fd < 0) {
 		DBG("open(): %s(%d)", strerror(errno), errno);
 		if (err)
-- 
1.7.9.5

--
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