Index: /trunk/Ohana/src/addstar/src/LoadFilenames.c
===================================================================
--- /trunk/Ohana/src/addstar/src/LoadFilenames.c	(revision 39404)
+++ /trunk/Ohana/src/addstar/src/LoadFilenames.c	(revision 39405)
@@ -6,5 +6,10 @@
   glob_t globList;
   AddstarFile *file;
-  char line[4096], word1[4096], word2[4096], sep[4096];
+
+  char *line, *word1, *word2, *sep;
+  ALLOCATE (line, char, 4096);
+  ALLOCATE (word1, char, 4096);
+  ALLOCATE (word2, char, 4096);
+  ALLOCATE (sep, char, 4096);
 
   if (options[0].filelist) {
@@ -78,4 +83,10 @@
   }
   *nfile = Nfile;
+
+  free (line);
+  free (word1);
+  free (word2);
+  free (sep);
+
   return (file);
 }
