summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/perl/perl-fe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/perl/perl-fe.c b/src/perl/perl-fe.c
index 19889adf..3c47a6d7 100644
--- a/src/perl/perl-fe.c
+++ b/src/perl/perl-fe.c
@@ -201,7 +201,7 @@ static GList *script_complete(const char *name)
PERL_SCRIPT_REC *rec = tmp->data;
if (strncmp(rec->name, name, len) == 0)
- list = g_list_append(list, rec->name);
+ list = g_list_append(list, g_strdup(rec->name));
}
return list;