mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-16 00:34:39 +08:00
obexd: Fix memory leak when loading plugins
On failure to open plugin directory, memory allocated to 'patterns' and 'excludes' is not being freed, and the following memory leak is logged: Direct leak of 28 byte(s) in 1 object(s) allocated from: #0 0xb6aa1c49 in malloc (/usr/lib/liblsan.so+0x9c49) #1 0xb6976e89 in g_malloc (/lib/libglib-2.0.so.0+0x3ae89) #2 0xb69886f1 in g_strsplit_set (/lib/libglib-2.0.so.0+0x4c6f1) #3 0xb6f82f3b in plugin_init (/usr/libexec/bluetooth/obexd+0x20f3b) #4 0xb6f70dc9 in main (/usr/libexec/bluetooth/obexd+0xedc9)
This commit is contained in:
parent
4e926f8e3e
commit
87f4b56b01
@ -138,8 +138,11 @@ gboolean plugin_init(const char *pattern, const char *exclude)
|
||||
DBG("Loading plugins %s", PLUGINDIR);
|
||||
|
||||
dir = g_dir_open(PLUGINDIR, 0, NULL);
|
||||
if (!dir)
|
||||
if (!dir) {
|
||||
g_strfreev(patterns);
|
||||
g_strfreev(excludes);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
while ((file = g_dir_read_name(dir)) != NULL) {
|
||||
struct obex_plugin_desc *desc;
|
||||
|
Loading…
Reference in New Issue
Block a user