Do not leak plugin dirs list
parent
511fdb0e83
commit
deb45535ca
|
@ -97,13 +97,14 @@ static void
|
||||||
sys_path_add_plugin_dirs (void)
|
sys_path_add_plugin_dirs (void)
|
||||||
{
|
{
|
||||||
char **d;
|
char **d;
|
||||||
char **dirs = moo_plugin_get_dirs ();
|
char **dirs;
|
||||||
static gboolean been_here = FALSE;
|
static gboolean been_here = FALSE;
|
||||||
|
|
||||||
if (been_here)
|
if (been_here)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
been_here = TRUE;
|
been_here = TRUE;
|
||||||
|
dirs = moo_plugin_get_dirs ();
|
||||||
|
|
||||||
for (d = dirs; d && *d; ++d)
|
for (d = dirs; d && *d; ++d)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue